forked from mavlink/MAVSDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
telemetry.h
643 lines (561 loc) · 19.2 KB
/
telemetry.h
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
#pragma once
#include <functional>
#include <memory>
#include "plugin_base.h"
namespace dronecore {
class TelemetryImpl;
class System;
/**
* @brief This class allows users to get vehicle telemetry and state information
* (e.g. battery, GPS, RC connection, flight mode etc.) and set telemetry update rates.
*/
class Telemetry : public PluginBase
{
public:
/**
* @brief Constructor. Creates the plugin for a specific System.
*
* The plugin is typically created as shown below:
*
* ```cpp
* auto telemetry = std::make_shared<Telemetry>(system);
* ```
*
* @param system The specific system associated with this plugin.
*/
explicit Telemetry(System &system);
/**
* @brief Destructor (internal use only).
*/
~Telemetry();
/**
* @brief Position type.
*/
struct Position {
double latitude_deg; /**< @brief Latitude in degrees (range: -90 to +90) */
double longitude_deg; /**< @brief Longitude in degrees (range: -180 to 180) */
float absolute_altitude_m; /**< @brief Altitude AMSL (above mean sea level) in metres */
float relative_altitude_m; /**< @brief Altitude relative to takeoff altitude in metres */
};
/**
* @brief Quaternion type.
*
* All rotations and axis systems follow the right-hand rule.
* The Hamilton quaternion product definition is used.
* A zero-rotation quaternion is represented by (1,0,0,0).
* The quaternion could also be written as w + xi + yj + zk.
*
* For more info see: https://en.wikipedia.org/wiki/Quaternion
*/
struct Quaternion {
float w; /**< @brief Quaternion entry 0 also denoted as a. */
float x; /**< @brief Quaternion entry 1 also denoted as b. */
float y; /**< @brief Quaternion entry 2 also denoted as c. */
float z; /**< @brief Quaternion entry 3 also denoted as d. */
};
/**
* @brief Euler angle type.
*
* All rotations and axis systems follow the right-hand rule.
* The Euler angles follow the convention of a 3-2-1 intrinsic Tait-Bryan rotation sequence.
*
* For more info see https://en.wikipedia.org/wiki/Euler_angles
*/
struct EulerAngle {
float roll_deg; /**< @brief Roll angle in degrees, positive is banking to the right. */
float pitch_deg; /**< @brief Pitch angle in degrees, positive is pitching nose up. */
float yaw_deg; /**< @brief Yaw angle in degrees, positive is clock-wise seen from above. */
};
/**
* @brief Ground speed type.
*
* The ground speed is represented in the NED (North East Down) frame and in metres/second.
*/
struct GroundSpeedNED {
float velocity_north_m_s; /**< @brief Velocity in North direction in metres/second. */
float velocity_east_m_s; /**< @brief Velocity in East direction in metres/second. */
float velocity_down_m_s; /**< @brief Velocity in Down direction in metres/second. */
};
/**
* @brief GPS information type.
*/
struct GPSInfo {
int num_satellites; /**< @brief Number of visible satellites used for solution. */
int fix_type; /**< @brief Fix type (0: no GPS, 1: no fix, 2: 2D fix, 3: 3D fix, 4: DGPS fix,
5: RTK float, 6: RTK fixed). */
};
/**
* @brief Battery type.
*/
struct Battery {
float voltage_v; /**< @brief Voltage in volts. */
float remaining_percent; /**< @brief Estimated battery percentage remaining (range: 0.0 to 1.0). */
};
/**
* @brief Flight modes.
*
* For more information about flight modes, check out
* https://docs.px4.io/en/config/flight_mode.html.
*/
enum class FlightMode {
READY, /**< @brief Armed and ready to take off. */
TAKEOFF, /**< @brief Taking off. */
HOLD, /**< @brief Hold mode (hovering in place (or circling for fixed-wing vehicles). */
MISSION, /**< @brief Mission mode. */
RETURN_TO_LAUNCH, /**< @brief Returning to launch position (then landing). */
LAND, /**< @brief Landing. */
OFFBOARD, /**< @brief Offboard mode. */
FOLLOW_ME, /**< @brief FollowMe mode. */
UNKNOWN /**< @brief Mode not known. */
};
/**
* @brief Get a human readable English string for a flight mode.
*/
static std::string flight_mode_str(FlightMode flight_mode);
/**
* @brief Various health flags.
*/
struct Health {
bool gyrometer_calibration_ok; /**< @brief true if the gyrometer is calibrated. */
bool accelerometer_calibration_ok; /**< @brief true if the accelerometer is calibrated. */
bool magnetometer_calibration_ok; /**< @brief true if the magnetometer is calibrated. */
bool level_calibration_ok; /**< @brief true if the vehicle has a valid level calibration. */
bool local_position_ok; /**< @brief true if the local position estimate is good enough to fly in
a position control mode. */
bool global_position_ok; /**< @brief true if the global position estimate is good enough to fly
in a position controlled mode. */
bool home_position_ok; /**< @brief true if the home position has been initialized properly. */
};
/**
* @brief Remote control status type.
*/
struct RCStatus {
bool available_once; /**< @brief true if an RC signal has been available once. */
bool available; /**< @brief true if the RC signal is available now. */
float signal_strength_percent; /**< @brief Signal strength as a percentage (range: 0 to 100). */
};
/**
* @brief Results enum for telemetry requests.
*/
enum class Result {
SUCCESS = 0, /**< @brief %Request succeeded. */
NO_SYSTEM, /**< @brief No system connected. */
CONNECTION_ERROR, /**< @brief %Connection error. */
BUSY, /**< @brief System busy. */
COMMAND_DENIED, /**< @brief Command denied. */
TIMEOUT, /**< @brief %Request timeout. */
UNKNOWN /**< @brief Unknown error. */
};
/**
* @brief Get human-readable English string for Telemetry::Result.
*
* @param result The enum value for which string is needed.
* @return Human readable string for the Telemetry::Result.
*/
static const char *result_str(Result result);
/**
* @brief Callback type for telemetry requests.
*/
typedef std::function<void(Result)> result_callback_t;
/**
* @brief Set rate of position updates (synchronous).
*
* @param rate_hz Rate in Hz.
* @return Result of request.
*/
Result set_rate_position(double rate_hz);
/**
* @brief Set rate of home position updates (synchronous).
*
* @param rate_hz Rate in Hz.
* @return Result of request.
*/
Result set_rate_home_position(double rate_hz);
/**
* @brief Set rate of in-air status updates (synchronous).
*
* @param rate_hz Rate in Hz.
* @return Result of request.
*/
Result set_rate_in_air(double rate_hz);
/**
* @brief Set rate of attitude updates (synchronous).
*
* @param rate_hz Rate in Hz.
* @return Result of request.
*/
Result set_rate_attitude(double rate_hz);
/**
* @brief Set rate of camera attitude updates (synchronous).
*
* @param rate_hz Rate in Hz.
* @return Result of request.
*/
Result set_rate_camera_attitude(double rate_hz);
/**
* @brief Set rate of ground speed (NED) updates (synchronous).
*
* @param rate_hz Rate in Hz.
* @return Result of request.
*/
Result set_rate_ground_speed_ned(double rate_hz);
/**
* @brief Set rate of GPS information updates (synchronous).
*
* @param rate_hz Rate in Hz.
* @return Result of request.
*/
Result set_rate_gps_info(double rate_hz);
/**
* @brief Set rate of battery status updates (synchronous).
*
* @param rate_hz Rate in Hz.
* @return Result of request.
*/
Result set_rate_battery(double rate_hz);
/**
* @brief Set rate of RC status updates (synchronous).
*
* @param rate_hz Rate in Hz.
* @return Result of request.
*/
Result set_rate_rc_status(double rate_hz);
/**
* @brief Set rate of position updates (asynchronous).
*
* @param rate_hz Rate in Hz.
* @param callback Callback to receive request result.
*/
void set_rate_position_async(double rate_hz, result_callback_t callback);
/**
* @brief Set rate of home position updates (asynchronous).
*
* @param rate_hz Rate in Hz.
* @param callback Callback to receive request result.
*/
void set_rate_home_position_async(double rate_hz, result_callback_t callback);
/**
* @brief Set rate of in-air status updates (asynchronous).
*
* @param rate_hz Rate in Hz.
* @param callback Callback to receive request result.
*/
void set_rate_in_air_async(double rate_hz, result_callback_t callback);
/**
* @brief Set rate of attitude updates (asynchronous).
*
* @param rate_hz Rate in Hz.
* @param callback Callback to receive request result.
*/
void set_rate_attitude_async(double rate_hz, result_callback_t callback);
/**
* @brief Set rate of camera attitude updates (asynchronous).
*
* @param rate_hz Rate in Hz.
* @param callback Callback to receive request result.
*/
void set_rate_camera_attitude_async(double rate_hz, result_callback_t callback);
/**
* @brief Set rate of ground speed (NED) updates (asynchronous).
*
* @param rate_hz Rate in Hz.
* @param callback Callback to receive request result.
*/
void set_rate_ground_speed_ned_async(double rate_hz, result_callback_t callback);
/**
* @brief Set rate of GPS information updates (asynchronous).
*
* @param rate_hz Rate in Hz.
* @param callback Callback to receive request result.
*/
void set_rate_gps_info_async(double rate_hz, result_callback_t callback);
/**
* @brief Set rate of battery status updates (asynchronous).
*
* @param rate_hz Rate in Hz.
* @param callback Callback to receive request result.
*/
void set_rate_battery_async(double rate_hz, result_callback_t callback);
/**
* @brief Set rate of RC status updates (asynchronous).
*
* @param rate_hz Rate in Hz.
* @param callback Callback to receive request result.
*/
void set_rate_rc_status_async(double rate_hz, result_callback_t callback);
/**
* @brief Get the current position (synchronous).
*
* @return Position.
*/
Position position() const;
/**
* @brief Get the home position (synchronous).
*
* @return Home position.
*/
Position home_position() const;
/**
* @brief Get the in-air status (synchronous).
*
* @return true if in-air (flying) and not on-ground (landed).
*/
bool in_air() const;
/**
* @brief Get the arming status (synchronous).
*
* @return true if armed (propellers spinning).
*/
bool armed() const;
/**
* @brief Get the current attitude in quaternions (synchronous).
*
* @return Attitude as quaternion.
*/
Quaternion attitude_quaternion() const;
/**
* @brief Get the current attitude in Euler angles (synchronous).
*
* @return Attitude as Euler angle.
*/
EulerAngle attitude_euler_angle() const;
/**
* @brief Get the camera's attitude in quaternions (synchronous).
*
* Note that the yaw component of attitude is relative to North (absolute frame).
*
* @return Camera's attitude as quaternion.
*/
Quaternion camera_attitude_quaternion() const;
/**
* @brief Get the camera's attitude in Euler angles (synchronous).
*
* Note that the yaw component of attitude is relative to North (absolute frame).
*
* @return Camera's attitude as Euler angle.
*/
EulerAngle camera_attitude_euler_angle() const;
/**
* @brief Get the current ground speed (NED) (synchronous).
*
* @return Ground speed in NED.
*/
GroundSpeedNED ground_speed_ned() const;
/**
* @brief Get the current GPS information (synchronous).
*
* @return GPS information.
*/
GPSInfo gps_info() const;
/**
* @brief Get the current battery status (synchronous).
*/
Battery battery() const;
/**
* @brief Get the current flight mode (synchronous).
*
* @return Flight mode.
*/
FlightMode flight_mode() const;
/**
* @brief Get the current health status (synchronous).
*
* @return Health status.
*/
Health health() const;
/**
* @brief Returns true if the overall health is ok (synchronous).
*
* @return True if all health flags are OK.
*/
bool health_all_ok() const;
/**
* @brief Get the RC status (synchronous).
*
* @return RC status.
*/
RCStatus rc_status() const;
/**
* @brief Callback type for position updates.
*/
typedef std::function<void(Position)> position_callback_t;
/**
* @brief Subscribe to position updates (asynchronous).
*
* @param callback Function to call with updates.
*/
void position_async(position_callback_t callback);
/**
* @brief Subscribe to home position updates (asynchronous).
*
* @param callback Function to call with updates.
*/
void home_position_async(position_callback_t callback);
/**
* @brief Callback type for in-air updates.
*
* @param in_air true if in-air (flying) and not on-ground (landed).
*/
typedef std::function<void(bool in_air)> in_air_callback_t;
/**
* @brief Subscribe to in-air updates (asynchronous).
*
* @param callback Function to call with updates.
*/
void in_air_async(in_air_callback_t callback);
/**
* @brief Callback type for armed updates (asynchronous).
*
* @param armed true if armed (motors spinning).
*/
typedef std::function<void(bool armed)> armed_callback_t;
/**
* @brief Subscribe to armed updates (asynchronous).
*
* Note that armed updates are limited to 1Hz.
*
* @param callback Function to call with updates.
*/
void armed_async(armed_callback_t callback);
/**
* @brief Callback type for attitude updates in quaternion.
*
* @param quaternion Attitude quaternion.
*/
typedef std::function<void(Quaternion quaternion)> attitude_quaternion_callback_t;
/**
* @brief Subscribe to attitude updates in quaternion (asynchronous).
*
* @param callback Function to call with updates.
*/
void attitude_quaternion_async(attitude_quaternion_callback_t callback);
/**
* @brief Callback type for attitude updates in Euler angles.
*
* @param euler_angle Attitude Euler angle.
*/
typedef std::function<void(EulerAngle euler_angle)> attitude_euler_angle_callback_t;
/**
* @brief Subscribe to attitude updates in Euler angles (asynchronous).
*
* @param callback Function to call with updates.
*/
void attitude_euler_angle_async(attitude_euler_angle_callback_t callback);
/**
* @brief Subscribe to camera attitude updates in quaternion (asynchronous).
*
* @param callback Function to call with updates.
*/
void camera_attitude_quaternion_async(attitude_quaternion_callback_t callback);
/**
* @brief Subscribe to camera attitude updates in Euler angles (asynchronous).
*
* @param callback Function to call with updates.
*/
void camera_attitude_euler_angle_async(attitude_euler_angle_callback_t callback);
/**
* @brief Callback type for ground speed (NED) updates.
*
* @param ground_speed_ned Ground speed (NED).
*/
typedef std::function<void(GroundSpeedNED ground_speed_ned)> ground_speed_ned_callback_t;
/**
* @brief Subscribe to ground speed (NED) updates (asynchronous).
*
* @param callback Function to call with updates.
*/
void ground_speed_ned_async(ground_speed_ned_callback_t callback);
/**
* @brief Callback type for GPS information updates.
*
* @param gps_info GPS information.
*/
typedef std::function<void(GPSInfo gps_info)> gps_info_callback_t;
/**
* @brief Subscribe to GPS information updates (asynchronous).
*
* @param callback Function to call with updates.
*/
void gps_info_async(gps_info_callback_t callback);
/**
* @brief Callback type for battery status updates.
*
* @param battery Battery status.
*/
typedef std::function<void(Battery battery)> battery_callback_t;
/**
* @brief Subscribe to battery status updates (asynchronous).
*
* @param callback Function to call with updates.
*/
void battery_async(battery_callback_t callback);
/**
* @brief Callback type for flight mode updates.
*
* @param flight_mode Flight mode.
*/
typedef std::function<void(FlightMode flight_mode)> flight_mode_callback_t;
/**
* @brief Subscribe to flight mode updates (asynchronous).
*
* Note that flight mode updates are limited to 1Hz.
*
* @param callback Function to call with updates.
*/
void flight_mode_async(flight_mode_callback_t callback);
/**
* @brief Callback type for health status updates.
*
* @param health health flags.
*/
typedef std::function<void(Health health)> health_callback_t;
/**
* @brief Subscribe to health status updates (asynchronous).
*
* Note that health status updates are limited to 1Hz.
*
* @param callback Function to call with updates.
*/
void health_async(health_callback_t callback);
/**
* @brief Callback type for health status updates.
*
* @param health_all_ok If all health flags are ok.
*/
typedef std::function<void(bool health_all_ok)> health_all_ok_callback_t;
/**
* @brief Subscribe to overall health status updates (asynchronous).
*
* Note that overall health status updates are limited to 1Hz.
*
* @param callback Function to call with updates.
*/
void health_all_ok_async(health_all_ok_callback_t callback);
/**
* @brief Callback type for RC status updates.
*
* @param rc_status RC status.
*/
typedef std::function<void(RCStatus rc_status)> rc_status_callback_t;
/**
* @brief Subscribe to RC status updates (asynchronous).
*
* @param callback Function to call with updates.
*/
void rc_status_async(rc_status_callback_t callback);
// Non-copyable
/**
* @brief Copy constructor (object is not copyable).
*/
Telemetry(const Telemetry &) = delete;
/**
* @brief Equality operator (object is not copyable).
*/
const Telemetry &operator=(const Telemetry &) = delete;
private:
/** @private Underlying implementation, set at instantiation */
std::unique_ptr<TelemetryImpl> _impl;
};
bool operator==(const Telemetry::Position &lhs, const Telemetry::Position &rhs);
std::ostream &operator<<(std::ostream &str, Telemetry::Position const &position);
} // namespace dronecore