#include "Blimp.h"1/*2* Init and run calls for land flight mode3*/45// Runs the main land controller6void ModeLand::run()7{8//Stop moving9motors->right_out = 0;10motors->front_out = 0;11motors->yaw_out = 0;12motors->down_out = 0;13}1415// set_mode_land_failsafe - sets mode to LAND16// this is always called from a failsafe so we trigger notification to pilot17void Blimp::set_mode_land_failsafe(ModeReason reason)18{19set_mode(Mode::Number::LAND, reason);2021// alert pilot to mode change22AP_Notify::events.failsafe_mode_change = 1;23}2425