mirror of https://github.com/ArduPilot/ardupilot
HAL_PX4: remove an old conditional define
This commit is contained in:
parent
8095eb0bee
commit
c93794999e
|
@ -26,11 +26,9 @@ void PX4RCOutput::init(void* unused)
|
||||||
if (ioctl(_pwm_fd, PWM_SERVO_ARM, 0) != 0) {
|
if (ioctl(_pwm_fd, PWM_SERVO_ARM, 0) != 0) {
|
||||||
hal.console->printf("RCOutput: Unable to setup IO arming\n");
|
hal.console->printf("RCOutput: Unable to setup IO arming\n");
|
||||||
}
|
}
|
||||||
#ifdef PWM_SERVO_SET_ARM_OK
|
|
||||||
if (ioctl(_pwm_fd, PWM_SERVO_SET_ARM_OK, 0) != 0) {
|
if (ioctl(_pwm_fd, PWM_SERVO_SET_ARM_OK, 0) != 0) {
|
||||||
hal.console->printf("RCOutput: Unable to setup IO arming OK\n");
|
hal.console->printf("RCOutput: Unable to setup IO arming OK\n");
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
_rate_mask = 0;
|
_rate_mask = 0;
|
||||||
_alt_fd = -1;
|
_alt_fd = -1;
|
||||||
_servo_count = 0;
|
_servo_count = 0;
|
||||||
|
|
Loading…
Reference in New Issue