#include "Blimp.h"12#define ARM_DELAY 20 // called at 10hz so 2 seconds3#define DISARM_DELAY 20 // called at 10hz so 2 seconds4#define LOST_VEHICLE_DELAY 10 // called at 10hz so 1 second56// motors_output - send output to motors library which will adjust and send to ESCs and servos7void Blimp::motors_output()8{9// output any servo channels10SRV_Channels::calc_pwm();1112auto &srv = AP::srv();1314// cork now, so that all channel outputs happen at once15srv.cork();1617// update output on any aux channels, for manual passthru18SRV_Channels::output_ch_all();1920// send output signals to motors21motors->output();2223// push all channels24srv.push();25}262728