px4-firmware/msg/vehicle_roi.msg

18 lines
712 B
Plaintext
Raw Normal View History

# Vehicle Region Of Interest (ROI)
uint8 ROI_NONE = 0 # No region of interest
2018-01-22 15:49:36 -04:00
uint8 ROI_WPNEXT = 1 # Point toward next MISSION with optional offset
uint8 ROI_LOCATION = 2 # Point toward fixed location
uint8 ROI_TARGET = 3 # Point toward target
uint8 ROI_ENUM_END = 4
uint8 mode # ROI mode (see above)
float64 lat # Latitude to point to
float64 lon # Longitude to point to
float32 alt # Altitude to point to
2018-01-22 15:49:36 -04:00
float32 pitchOffset # Additional pitch offset to next waypoint
float32 rollOffset # Additional roll offset to next waypoint
float32 yawOffset # Additional yaw offset to next waypoint