forked from Archive/PX4-Autopilot
FlightTaskOrbit: alert user about exceeded radius (events)
This commit is contained in:
parent
8ad44ee128
commit
3e8d2fea94
|
@ -38,6 +38,7 @@
|
|||
#include "FlightTaskOrbit.hpp"
|
||||
|
||||
#include <mathlib/mathlib.h>
|
||||
#include <px4_platform_common/events.h>
|
||||
#include <lib/geo/geo.h>
|
||||
|
||||
using namespace matrix;
|
||||
|
@ -77,6 +78,7 @@ bool FlightTaskOrbit::applyCommandParameters(const vehicle_command_s &command)
|
|||
_orbit_velocity = new_velocity;
|
||||
|
||||
} else {
|
||||
events::send(events::ID("orbit_radius_exceeded"), events::Log::Alert, "Orbit radius limit exceeded");
|
||||
ret = false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue