mirror of https://github.com/ArduPilot/ardupilot
HAL_ChibiOS: fixed BRD_SAFETY_MASK on some boards
for boards that have an IOMCU but also have a safety button on the FMU this fixes the BRD_SAFETY_MASK
This commit is contained in:
parent
02716eb379
commit
2f65a9b35a
|
@ -2092,9 +2092,14 @@ void RCOutput::safety_update(void)
|
|||
}
|
||||
#elif HAL_WITH_IO_MCU
|
||||
safety_state = _safety_switch_state();
|
||||
iomcu.set_safety_mask(safety_mask);
|
||||
#endif
|
||||
|
||||
#if HAL_WITH_IO_MCU
|
||||
// regardless of if we have a FMU safety pin, if we have an IOMCU we need
|
||||
// to pass the BRD_SAFETY_MASK to the IOMCU
|
||||
iomcu.set_safety_mask(safety_mask);
|
||||
#endif
|
||||
|
||||
#ifdef HAL_GPIO_PIN_LED_SAFETY
|
||||
led_counter = (led_counter+1) % 16;
|
||||
const uint16_t led_pattern = safety_state==AP_HAL::Util::SAFETY_DISARMED?0x5500:0xFFFF;
|
||||
|
|
Loading…
Reference in New Issue