Merge pull request #172 from sbobowski/patch-1

Update fdrs_node_lora.h
pull/176/head
Timm Bogner 1 year ago committed by GitHub
commit d2c2b2a4b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -494,7 +494,9 @@ uint32_t pingFDRSLoRa(uint16_t *address, uint32_t timeout)
while ((millis() - ping_start) <= timeout)
{
handleLoRa();
yield(); // do I need to yield or does it automatically?
#ifdef ESP8266
yield();
#endif
if (pingFlag)
{
DBG("LoRa Ping Returned: " + String(millis() - ping_start) + "ms.");

Loading…
Cancel
Save