mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-08 17:08:28 -04:00
AP_HAL_ChibiOS: fix race condition in sending serial LED data
This commit is contained in:
parent
2d465a5b20
commit
b7fd04318a
@ -2626,9 +2626,9 @@ void RCOutput::serial_led_send(const uint16_t chan)
|
||||
}
|
||||
|
||||
if (grp->prepared_send) {
|
||||
chEvtSignal(led_thread_ctx, EVT_LED_SEND);
|
||||
grp->serial_led_pending = true;
|
||||
serial_led_pending = true;
|
||||
chEvtSignal(led_thread_ctx, EVT_LED_SEND);
|
||||
}
|
||||
}
|
||||
#endif // HAL_SERIALLED_ENABLED
|
||||
|
Loading…
Reference in New Issue
Block a user