AP_Motors: fixed channel output for SingleCopter

This commit is contained in:
Andrew Tridgell 2016-05-26 16:26:43 +10:00
parent 163783fefd
commit f9fb098222
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ public:
/// Constructor
AP_MotorsSingle(uint16_t loop_rate, uint16_t speed_hz = AP_MOTORS_SPEED_DEFAULT) :
AP_MotorsMulticopter(loop_rate, speed_hz),
_servo1(CH_1), _servo2(CH_2), _servo3(CH_3), _servo4(CH_4)
_servo1(CH_NONE), _servo2(CH_NONE), _servo3(CH_NONE), _servo4(CH_NONE)
{
AP_Param::setup_object_defaults(this, var_info);
};