mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2025-12-13 18:56:02 +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.
12 lines
427 B
Plaintext
12 lines
427 B
Plaintext
# ParameterSetValueRequest : Used by a remote or primary to update the value for a parameter at the other end
|
|
|
|
uint64 timestamp
|
|
uint16 parameter_index
|
|
|
|
int32 int_value # Optional value for an integer parameter
|
|
float32 float_value # Optional value for a float parameter
|
|
|
|
uint8 ORB_QUEUE_LENGTH = 32
|
|
|
|
# TOPICS parameter_set_value_request parameter_remote_set_value_request parameter_primary_set_value_request
|