mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-03-25 03:04:12 +08:00
* msg: GpsDump: increase queue from 8 to 16 and replace instance with device_id * gps: add back instance
15 lines
445 B
Plaintext
15 lines
445 B
Plaintext
# This message is used to dump the raw gps communication to the log.
|
|
|
|
uint64 timestamp # time since system start (microseconds)
|
|
|
|
uint8 INSTANCE_MAIN = 0
|
|
uint8 INSTANCE_SECONDARY = 1
|
|
|
|
uint8 instance # Instance of GNSS receiver
|
|
uint32 device_id
|
|
uint8 len # length of data, MSB bit set = message to the gps device,
|
|
# clear = message from the device
|
|
uint8[79] data # data to write to the log
|
|
|
|
uint8 ORB_QUEUE_LENGTH = 16
|