forked from chiyu1468/AirTrapMine
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
717 B
Plaintext
20 lines
717 B
Plaintext
|
5 months ago
|
# MAVLink message: TRAJECTORY
|
||
|
|
# https://mavlink.io/en/messages/common.html#TRAJECTORY
|
||
|
|
|
||
|
|
std_msgs/Header header
|
||
|
|
|
||
|
|
uint8 type # See enum MAV_TRAJECTORY_REPRESENTATION.
|
||
|
|
uint8 MAV_TRAJECTORY_REPRESENTATION_WAYPOINTS = 0
|
||
|
|
uint8 MAV_TRAJECTORY_REPRESENTATION_BEZIER = 1
|
||
|
|
|
||
|
|
mavros_msgs/PositionTarget point_1
|
||
|
|
mavros_msgs/PositionTarget point_2
|
||
|
|
mavros_msgs/PositionTarget point_3
|
||
|
|
mavros_msgs/PositionTarget point_4
|
||
|
|
mavros_msgs/PositionTarget point_5
|
||
|
|
|
||
|
|
uint8[5] point_valid # States if respective point is valid.
|
||
|
|
uint16[5] command # MAV_CMD associated with each point. UINT16_MAX if unused.
|
||
|
|
|
||
|
|
float32[5] time_horizon # if type MAV_TRAJECTORY_REPRESENTATION_BEZIER, it represents the time horizon for each point, otherwise set to NaN
|