2016-05-19 18:46:06 -03:00
|
|
|
# Vehicle Region Of Interest (ROI)
|
|
|
|
|
2017-09-26 13:25:02 -03:00
|
|
|
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
|
2018-03-15 07:23:05 -03:00
|
|
|
uint8 ROI_LOCATION = 2 # Point toward fixed location
|
|
|
|
uint8 ROI_TARGET = 3 # Point toward target
|
|
|
|
uint8 ROI_ENUM_END = 4
|
2016-05-19 18:46:06 -03:00
|
|
|
|
|
|
|
uint8 mode # ROI mode (see above)
|
2017-09-26 13:25:02 -03:00
|
|
|
|
2016-05-19 18:46:06 -03:00
|
|
|
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
|