fix RX AUDIO baseband async error for PRALINE (#3010)

This commit is contained in:
qwer123
2026-02-20 17:35:19 +08:00
committed by GitHub
parent f8ed7489c9
commit 363b27efe8
+6 -1
View File
@@ -473,7 +473,12 @@ void shutdown() {
send_message(&message);
shared_memory.application_queue.reset();
// Allow time for the shutdown message to be processed and for the baseband
// core to stop before starting another image. Otherwise, the M4 may still be
// running and cause a crash when the next image is started.
#ifdef PRALINE
chThdSleepMilliseconds(20);
#endif
baseband_image_running = false;
}