File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 20
20
* The code has been tested with the BlueMark DroneBeacon MAVLink transponder running this command in the ArduPlane folder:
21
21
* sim_vehicle.py --wipe-eeprom --console --map -A --serial1=uart:/dev/ttyUSB1:9600
22
22
* (and a DroneBeacon MAVLink transponder connected to ttyUSB1)
23
+ *
24
+ * The Remote ID implementation expects a transponder that caches the received MAVLink messages from ArduPilot
25
+ * and transmits them at the required intervals. So static messages are only send once to the transponder.
23
26
*/
24
27
25
28
#include < stdio.h>
Original file line number Diff line number Diff line change 20
20
* The code has been tested with the BlueMark DroneBeacon MAVLink transponder running this command in the ArduPlane folder:
21
21
* sim_vehicle.py --wipe-eeprom --console --map -A --serial1=uart:/dev/ttyUSB1:9600
22
22
* (and a DroneBeacon MAVLink transponder connected to ttyUSB1)
23
+ *
24
+ * The Remote ID implementation expects a transponder that caches the received MAVLink messages from ArduPilot
25
+ * and transmits them at the required intervals. So static messages are only send once to the transponder.
23
26
*/
24
27
25
28
#pragma once
@@ -121,7 +124,7 @@ class AP_OpenDroneID {
121
124
void update ();
122
125
void send_dynamic_out ();
123
126
void send_static_out ();
124
-
127
+
125
128
// get methods
126
129
MAV_ODID_ID_TYPE get_id_type ();
127
130
MAV_ODID_UA_TYPE get_ua_type ();
You can’t perform that action at this time.
0 commit comments