Temporary logging addition to debug CI

This commit is contained in:
Matthias Grob 2020-10-25 10:04:28 +01:00 committed by Daniel Agar
parent fafbb687d8
commit e92795b474
2 changed files with 3 additions and 0 deletions

View File

@ -13,3 +13,5 @@ float32 max_distance_to_ground # in meters
bool want_takeoff # tell the controller to initiate takeoff when idling (ignored during flight)
bool reset_integral # tells controller to reset integrators e.g. since we know the vehicle is not in air
float32 minimum_thrust # tell controller what the minimum collective output thrust should be
uint32 flight_task

View File

@ -485,6 +485,7 @@ void FlightModeManager::generateTrajectorySetpoint(const float dt,
_time_stamp_last_loop);
constraints.speed_up = _takeoff.updateRamp(dt, constraints.speed_up);
constraints.flight_task = _flight_tasks.getActiveTask();
_vehicle_constraints_pub.publish(constraints);
if (not_taken_off) {