// enable - starts allowing signals to be sent to motors
virtualvoidenable(){
};
// arm, disarm or check status status of motors
virtualboolarmed(){
return_armed;
};
virtualvoidarmed(boolarm){
_armed=arm;
};
// check or set status of auto_armed - controls whether autopilot can take control of throttle
// Note: this should probably be moved out of this class as it has little to do with the motors
virtualboolauto_armed(){
return_auto_armed;
};
virtualvoidauto_armed(boolarm){
_auto_armed=arm;
};
// set_min_throttle - sets the minimum throttle that will be sent to the engines when they're not off (i.e. to prevents issues with some motors spinning and some not at very low throttle)
// output functions that should be overloaded by child classes
virtualvoidoutput_armed(){
};
virtualvoidoutput_disarmed(){
};
APM_RC_Class*_rc;// APM_RC class used to send updates to ESCs/Servos
RC_Channel*_rc_roll,*_rc_pitch,*_rc_throttle,*_rc_yaw;// input in from users
uint8_t_motor_to_channel_map[AP_MOTORS_MAX_NUM_MOTORS];// mapping of motor number (as received from upper APM code) to RC channel output - used to account for differences between APM1 and APM2
uint16_t_speed_hz;// speed in hz to send updates to motors
bool_armed;// true if motors are armed
bool_auto_armed;// true is throttle is above zero, allows auto pilot to take control of throttle
int16_t_min_throttle;// the minimum throttle to be sent to the engines when they're on (prevents issues with some motors on while other off at very low throttle)
int16_t_max_throttle;// the minimum throttle to be sent to the engines when they're on (prevents issues with some motors on while other off at very low throttle)