Fixed missing free in display handler

This commit is contained in:
Mark Qvist
2023-01-10 14:27:03 +01:00
parent 18c0f65295
commit b93e321d39
2 changed files with 4 additions and 5 deletions

View File

@@ -989,7 +989,7 @@ void loop() {
if (console_active) {
console_loop();
} else {
//led_indicate_standby();
led_indicate_standby();
}
} else {
@@ -999,10 +999,8 @@ void loop() {
}
#if MCU_VARIANT == MCU_ESP32
// if (!console_active) {
buffer_serial();
if (!fifo_isempty(&serialFIFO)) serial_poll();
// }
#else
if (!fifo_isempty_locked(&serialFIFO)) serial_poll();
#endif