-
Notifications
You must be signed in to change notification settings - Fork 4
/
mavconn_msg.cpp
261 lines (198 loc) · 7.47 KB
/
mavconn_msg.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
#include <iostream>
#include <chrono>
#include <time.h>
#include <mavconn/interface.h>
#include <opencv2/core/matx.hpp>
#include "mavconn_msg.h"
using namespace mavconn;
using namespace mavlink;
void send_heartbeat(MAVConnInterface *ip) {
using mavlink::common::MAV_TYPE;
using mavlink::common::MAV_AUTOPILOT;
using mavlink::common::MAV_MODE;
using mavlink::common::MAV_STATE;
mavlink::common::msg::HEARTBEAT hb {};
hb.type = int(MAV_TYPE::ONBOARD_CONTROLLER);
hb.autopilot = int(MAV_AUTOPILOT::INVALID);
hb.base_mode = int(MAV_MODE::MANUAL_ARMED);
hb.custom_mode = 0;
hb.system_status = int(MAV_STATE::ACTIVE);
ip->send_message_ignore_drop(hb);
}
void send_msg_to_gcs(MAVConnInterface *ip, std::string text) {
mavlink_message_t msg {};
mavlink::MsgMap map(msg);
mavlink::common::msg::STATUSTEXT stt {};
std::array<char,50> txt;
int len = (text.length() < 49) ? text.length() : 49;
for (int i = 0; i < len; i++) {
txt[i] = text[i];
}
txt[len] = '\0';
stt.text = txt;
stt.severity = 6;
stt.serialize(map);
mavlink::mavlink_finalize_message(&msg, ip->get_system_id(), ip->get_component_id(), stt.MIN_LENGTH, stt.LENGTH, stt.CRC_EXTRA);
ip->send_message_ignore_drop(&msg);
}
void send_gps_global_origin(MAVConnInterface *ip) {
mavlink_message_t msg {};
mavlink::MsgMap map(msg);
mavlink::common::msg::SET_GPS_GLOBAL_ORIGIN ggo {};
int32_t lat = 425633500; // Terni
int32_t lon = 126432900; // Terni
int32_t alt = 163000; // Terni
ggo.latitude = lat;
ggo.longitude = lon;
ggo.altitude = alt;
ggo.serialize(map);
mavlink::mavlink_finalize_message(&msg, ip->get_system_id(), ip->get_component_id(), ggo.MIN_LENGTH, ggo.LENGTH, ggo.CRC_EXTRA);
ip->send_message_ignore_drop(&msg);
}
void send_set_home_position(MAVConnInterface *ip) {
mavlink_message_t msg {};
mavlink::MsgMap map(msg);
mavlink::common::msg::SET_HOME_POSITION shp {};
int32_t lat = 425633500; // Terni
int32_t lon = 126432900; // Terni
int32_t alt = 163000; // Terni
//array<float, 4> q = {1, 0, 0, 0}; // w x y z
shp.latitude = lat;
shp.longitude = lon;
shp.altitude = alt;
shp.x = 0.0;
shp.y = 0.0;
shp.z = 0.0;
shp.q = {1.0, 0.0, 0.0, 0.0}; // w x y z
shp.approach_x = 0.0;
shp.approach_y = 0.0;
shp.approach_z = 1.0;
shp.serialize(map);
mavlink::mavlink_finalize_message(&msg, ip->get_system_id(), ip->get_component_id(), shp.MIN_LENGTH, shp.LENGTH, shp.CRC_EXTRA);
ip->send_message_ignore_drop(&msg);
}
void send_vision_position_estimate(MAVConnInterface *ip, uint64_t micros, Vec3f tra, Vec3f rot, uint8_t reset_counter) {
mavlink_message_t msg {};
mavlink::MsgMap map(msg);
mavlink::common::msg::VISION_POSITION_ESTIMATE vpe {};
vpe.usec = micros;
vpe.x = tra[0];
vpe.y = tra[1];
vpe.z = tra[2];
vpe.roll = rot[0];
vpe.pitch = rot[1];
vpe.yaw = rot[2];
std::array<float,21> cov;
cov.fill(0.0);
vpe.covariance = cov;
vpe.reset_counter = reset_counter;
vpe.serialize(map);
mavlink::mavlink_finalize_message(&msg, ip->get_system_id(), ip->get_component_id(), vpe.MIN_LENGTH, vpe.LENGTH, vpe.CRC_EXTRA);
ip->send_message_ignore_drop(&msg);
}
void send_vision_speed_estimate(MAVConnInterface *ip, uint64_t micros, Vec3f vel, uint8_t reset_counter) {
mavlink_message_t msg {};
mavlink::MsgMap map(msg);
mavlink::common::msg::VISION_SPEED_ESTIMATE vse {};
vse.usec = micros;
vse.x = vel[0];
vse.y = vel[1];
vse.z = vel[2];
std::array<float,9> cov;
cov.fill(0.0);
vse.covariance = cov;
vse.reset_counter = reset_counter;
vse.serialize(map);
mavlink::mavlink_finalize_message(&msg, ip->get_system_id(), ip->get_component_id(), vse.MIN_LENGTH, vse.LENGTH, vse.CRC_EXTRA);
ip->send_message_ignore_drop(&msg);
}
void send_vision_position_delta(MAVConnInterface *ip, uint64_t time_us, uint64_t time_delta_us, Vec3f angle_delta, Vec3f position_delta, float confidence) {
mavlink_message_t msg {};
mavlink::MsgMap map(msg);
mavlink::ardupilotmega::msg::VISION_POSITION_DELTA vpd {};
vpd.time_usec = time_us;
vpd.time_delta_usec = time_delta_us;
vpd.angle_delta[0] = angle_delta[0];
vpd.angle_delta[1] = angle_delta[1];
vpd.angle_delta[2] = angle_delta[2];
vpd.position_delta[0] = position_delta[0];
vpd.position_delta[1] = position_delta[1];
vpd.position_delta[2] = position_delta[2];
vpd.confidence = confidence;
vpd.serialize(map);
mavlink::mavlink_finalize_message(&msg, ip->get_system_id(), ip->get_component_id(), vpd.MIN_LENGTH, vpd.LENGTH, vpd.CRC_EXTRA);
ip->send_message_ignore_drop(&msg);
}
void send_timesync(MAVConnInterface *ip, uint64_t tc1, uint64_t ts1) {
mavlink_message_t msg {};
mavlink::MsgMap map(msg);
mavlink::common::msg::TIMESYNC tms {};
tms.tc1 = tc1;
tms.ts1 = ts1;
tms.serialize(map);
mavlink::mavlink_finalize_message(&msg, ip->get_system_id(), ip->get_component_id(), tms.MIN_LENGTH, tms.LENGTH, tms.CRC_EXTRA);
ip->send_message_ignore_drop(&msg);
}
void send_system_time(MAVConnInterface *ip, uint64_t time_unix_usec) {
mavlink_message_t msg {};
mavlink::MsgMap map(msg);
mavlink::common::msg::SYSTEM_TIME smt {};
smt.time_unix_usec = time_unix_usec;
smt.serialize(map);
mavlink::mavlink_finalize_message(&msg, ip->get_system_id(), ip->get_component_id(), smt.MIN_LENGTH, smt.LENGTH, smt.CRC_EXTRA);
ip->send_message_ignore_drop(&msg);
}
void send_gps_input(MAVConnInterface *ip, uint64_t time_unix_usec, Vec3f pos_ned, Vec3f vel_ned, uint16_t yaw_cd) {
mavlink_message_t msg {};
mavlink::MsgMap map(msg);
mavlink::common::msg::GPS_INPUT gps {};
float north = pos_ned[0];
float east = pos_ned[1];
float down = pos_ned[2];
float vn = vel_ned[0];
float ve = vel_ned[1];
float vd = vel_ned[2];
// gps_time: tnow -> (week, week_ms)
double tnow = (double)time_unix_usec / 1000000.0;
uint32_t epoch = 86400*(10*365 + (1980-1969)/4 + 1 + 6 - 2) - leapseconds;
uint32_t epoch_seconds = (uint32_t)tnow - epoch;
uint16_t week = (uint16_t)floor(epoch_seconds / sec_per_week);
uint32_t t_ms = (uint32_t)(tnow * 1000) % 1000;
uint32_t week_ms = (epoch_seconds % sec_per_week) * 1000 + ((uint32_t)floor(t_ms/200) * 200);
// gps_offset: (east, north) -> (gps_lat, gps_lon)
double bearing = atan2(east, north) * 180.0 / M_PI;
double distance = sqrt(east * east + north * north);
double lat1 = origin_lat * M_PI / 180.0;
double lon1 = origin_lon * M_PI / 180.0;
double brng = bearing * M_PI / 180.0;
double dr = distance / radius_of_earth;
double lat2 = asin(sin(lat1) * cos(dr) + cos(lat1) * sin(dr) * cos(brng));
double lon2 = lon1 + atan2(sin(brng) * sin(dr) * cos(lat1), cos(dr) - sin(lat1) * sin(lat2));
double gps_lat = lat2 * 180.0 / M_PI;
double gps_lon = lon2 * 180.0 / M_PI;
gps_lon = fmod((gps_lon + 180.0), 360.0) - 180.0;
double gps_alt = origin_alt - down;
gps.time_usec = time_unix_usec;
gps.gps_id = 0;
gps.ignore_flags = 0;
gps.time_week_ms = week_ms; // uint32_t
gps.time_week = week; // uint16_t
gps.fix_type = 3;
gps.lat = (int32_t)(gps_lat * 1.0e7);
gps.lon = (int32_t)(gps_lon * 1.0e7);
gps.alt = gps_alt;
gps.hdop = 1.0;
gps.vdop = 1.0;
gps.vn = vn;
gps.ve = ve;
gps.vd = vd;
gps.speed_accuracy = 0.2;
gps.horiz_accuracy = 1.0;
gps.vert_accuracy = 1.0;
gps.satellites_visible = 16;
gps.yaw = yaw_cd;
//cout << "lat: " << gps.lat << " lon: " << gps.lon << endl;;
gps.serialize(map);
mavlink::mavlink_finalize_message(&msg, ip->get_system_id(), ip->get_component_id(), gps.MIN_LENGTH, gps.LENGTH, gps.CRC_EXTRA);
ip->send_message_ignore_drop(&msg);
}