AP_HAL_ChibiOS: fix race condition in sending serial LED data

This commit is contained in:
Andy Piper 2023-11-17 17:31:21 +00:00 committed by Randy Mackay
parent f0636bf22e
commit 3b5395eb2d
1 changed files with 1 additions and 1 deletions

View File

@ -2520,9 +2520,9 @@ void RCOutput::serial_led_send(const uint16_t chan)
} }
if (grp->prepared_send) { if (grp->prepared_send) {
chEvtSignal(led_thread_ctx, EVT_LED_SEND);
grp->serial_led_pending = true; grp->serial_led_pending = true;
serial_led_pending = true; serial_led_pending = true;
chEvtSignal(led_thread_ctx, EVT_LED_SEND);
} }
} }