We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61fc981 commit ca4db5cCopy full SHA for ca4db5c
src/Timer_main.cpp
@@ -552,7 +552,7 @@ void loop()
552
xSemaphoreGive(semaphore);
553
}
554
555
- if (uxQueueMessagesWaiting(rxqueue) > 0 && Serial.availableForWrite() == 128)
+ if (uxQueueMessagesWaiting(rxqueue) > 0)
556
{
557
mspPacket_t rxPacket;
558
if (xQueueReceive(rxqueue, &rxPacket, (TickType_t)512) == pdTRUE)
src/Vrx_main.cpp
#if defined(PLATFORM_ESP32)
- if (uxQueueMessagesWaiting(rxqueue) > 0 && Serial.availableForWrite() >= 128)
0 commit comments