mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-05-27 02:06:27 +08:00
New ROI commands implementation
This commit is contained in:
committed by
Lorenz Meier
parent
ae52f74e78
commit
342509b3ab
+5
-1
@@ -1,7 +1,7 @@
|
||||
# Vehicle Region Of Interest (ROI)
|
||||
|
||||
uint8 ROI_NONE = 0 # No region of interest
|
||||
uint8 ROI_WPNEXT = 1 # Point toward next MISSION
|
||||
uint8 ROI_WPNEXT = 1 # Point toward next MISSION with optional offset
|
||||
uint8 ROI_WPINDEX = 2 # Point toward given MISSION
|
||||
uint8 ROI_LOCATION = 3 # Point toward fixed location
|
||||
uint8 ROI_TARGET = 4 # Point toward target
|
||||
@@ -15,3 +15,7 @@ uint32 target_seq # target sequence to point to
|
||||
float64 lat # Latitude to point to
|
||||
float64 lon # Longitude to point to
|
||||
float32 alt # Altitude to point to
|
||||
|
||||
float32 pitchOffset # Additional pitch offset to next waypoint
|
||||
float32 rollOffset # Additional roll offset to next waypoint
|
||||
float32 yawOffset # Additional yaw offset to next waypoint
|
||||
|
||||
Reference in New Issue
Block a user