mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-17 13:00:34 +08:00
11 lines
505 B
Plaintext
11 lines
505 B
Plaintext
#
|
|
# Single parameter value.
|
|
# The actual type should be inferred from the available values, as described below.
|
|
# If none of the values below are present, the value is considered empty.
|
|
#
|
|
|
|
bool[<=1] value_bool # Preferred over int, float and string if ambiguous
|
|
int64[<=1] value_int # Preferred over float and string if ambiguous
|
|
float32[<=1] value_float # Preferred over string if ambiguous
|
|
String[<=1] value_string # This one will be used only if all above are empty
|