Files
PX4-Autopilot/docs/uk/msg_docs/UavcanParameterRequest.md
PX4 Build Bot 30b6938f5e New Crowdin translations - uk (#26552)
Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
2026-03-05 14:01:38 +11:00

6.4 KiB

pageClass
pageClass
is-wide-page

UavcanParameterRequest (UORB повідомлення)

UAVCAN-MAVLink parameter bridge request type.

TOPICS: uavcan_parameter_request

Fields

Назва Тип Unit [Frame] Range/Enum Опис
timestamp uint64 time since system start (microseconds)
message_type uint8 MAVLink message type: PARAM_REQUEST_READ, PARAM_REQUEST_LIST, PARAM_SET
node_id uint8 UAVCAN node ID mapped from MAVLink component ID
param_id char[17] MAVLink/UAVCAN parameter name
param_index int16 -1 if the param_id field should be used as identifier
param_type uint8 MAVLink parameter type
int_value int64 current value if param_type is int-like
real_value float32 current value if param_type is float-like

Constants

Назва Тип Значення Опис
MESSAGE_TYPE_PARAM_REQUEST_READ uint8 20 MAVLINK_MSG_ID_PARAM_REQUEST_READ
MESSAGE_TYPE_PARAM_REQUEST_LIST uint8 21 MAVLINK_MSG_ID_PARAM_REQUEST_LIST
MESSAGE_TYPE_PARAM_SET uint8 23 MAVLINK_MSG_ID_PARAM_SET
NODE_ID_ALL uint8 0 MAV_COMP_ID_ALL
PARAM_TYPE_UINT8 uint8 1 MAV_PARAM_TYPE_UINT8
PARAM_TYPE_INT64 uint8 8 MAV_PARAM_TYPE_INT64
PARAM_TYPE_REAL32 uint8 9 MAV_PARAM_TYPE_REAL32
ORB_QUEUE_LENGTH uint8 4

Source Message

Source file (GitHub)

:::details Click here to see original file

# UAVCAN-MAVLink parameter bridge request type
uint64 timestamp		# time since system start (microseconds)

uint8 MESSAGE_TYPE_PARAM_REQUEST_READ = 20	# MAVLINK_MSG_ID_PARAM_REQUEST_READ
uint8 MESSAGE_TYPE_PARAM_REQUEST_LIST = 21	# MAVLINK_MSG_ID_PARAM_REQUEST_LIST
uint8 MESSAGE_TYPE_PARAM_SET = 23		# MAVLINK_MSG_ID_PARAM_SET
uint8 message_type				# MAVLink message type: PARAM_REQUEST_READ, PARAM_REQUEST_LIST, PARAM_SET

uint8 NODE_ID_ALL = 0		# MAV_COMP_ID_ALL
uint8 node_id			# UAVCAN node ID mapped from MAVLink component ID

char[17] param_id		# MAVLink/UAVCAN parameter name
int16 param_index		# -1 if the param_id field should be used as identifier

uint8 PARAM_TYPE_UINT8 = 1	# MAV_PARAM_TYPE_UINT8
uint8 PARAM_TYPE_INT64 = 8	# MAV_PARAM_TYPE_INT64
uint8 PARAM_TYPE_REAL32 = 9	# MAV_PARAM_TYPE_REAL32
uint8 param_type		# MAVLink parameter type

int64 int_value			# current value if param_type is int-like
float32 real_value		# current value if param_type is float-like

uint8 ORB_QUEUE_LENGTH = 4

:::