mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-02-06 18:23:30 +08:00
The voxl2 has a split architecture. PX4 runs on a posix platform and a Qurt platform. The two communicate uorb topics back and forth with the muorb module. But each has it's own parameters database and they need to stay in sync with each other. This PR adds support to keep the 2 parameter databases in sync. The main parameters database running on Linux has file system support while the Qurt one does not. The Linux side is considered the primary and the Qurt side is considered the remote.
9 lines
243 B
Plaintext
9 lines
243 B
Plaintext
# ParameterResetRequest : Used by the primary to reset one or all parameter value(s) on the remote
|
|
|
|
uint64 timestamp
|
|
uint16 parameter_index
|
|
|
|
bool reset_all # If this is true then ignore parameter_index
|
|
|
|
uint8 ORB_QUEUE_LENGTH = 4
|