mirror of https://github.com/ArduPilot/ardupilot
AP_Motors: fixed channel output for SingleCopter
This commit is contained in:
parent
163783fefd
commit
f9fb098222
|
@ -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);
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue