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
|
|
|
|
uint8 ROI_WPNEXT = 1 # Point toward next MISSION
|
|
|
|
uint8 ROI_WPINDEX = 2 # Point toward given MISSION
|
|
|
|
uint8 ROI_LOCATION = 3 # Point toward fixed location
|
|
|
|
uint8 ROI_TARGET = 4 # Point toward target
|
|
|
|
uint8 ROI_ENUM_END = 5
|
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
|
|
|
uint32 mission_seq # mission sequence to point to
|
|
|
|
uint32 target_seq # target sequence to point to
|
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
|