2018-04-25 17:28:02 +02:00
|
|
|
# Local setpoint constraints in NED frame
|
|
|
|
|
# setting something to NaN means that no limit is provided
|
|
|
|
|
|
2019-05-13 21:07:05 +02:00
|
|
|
uint64 timestamp # time since system start (microseconds)
|
2018-08-07 01:30:05 +01:00
|
|
|
|
2019-05-13 21:07:05 +02:00
|
|
|
float32 yawspeed # in radians/sec
|
|
|
|
|
float32 speed_xy # in meters/sec
|
|
|
|
|
float32 speed_up # in meters/sec
|
|
|
|
|
float32 speed_down # in meters/sec
|
|
|
|
|
float32 tilt # in radians [0, PI]
|
2018-05-24 17:58:02 +02:00
|
|
|
float32 min_distance_to_ground # in meters
|
2018-06-25 10:00:08 +02:00
|
|
|
float32 max_distance_to_ground # in meters
|
2019-05-13 21:07:05 +02:00
|
|
|
bool want_takeoff # tell the controller to initiate takeoff when idling (ignored during flight)
|
2020-10-24 17:27:07 +02:00
|
|
|
bool reset_integral # tells controller to reset integrators e.g. since we know the vehicle is not in air
|
2020-10-24 13:15:00 +02:00
|
|
|
float32 minimum_thrust # tell controller what the minimum collective output thrust should be
|
2020-10-25 10:04:28 +01:00
|
|
|
|
|
|
|
|
uint32 flight_task
|