mirror of
https://github.com/liberatedsystems/RNode_Firmware_CE.git
synced 2025-07-30 18:08:43 -04:00
Fixed missing free in display handler
This commit is contained in:
parent
18c0f65295
commit
b93e321d39
2 changed files with 4 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue