Skip to content

Commit

Permalink
Fix for RPi Pico
Browse files Browse the repository at this point in the history
- Fix hangs with RPi Pico
closes nRF24/RF24Mesh#215
  • Loading branch information
TMRh20 committed Aug 27, 2022
1 parent 1c143ae commit d661558
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RF24Ethernet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ IPAddress RF24EthernetClass::dnsServerIP()

void RF24EthernetClass::tick()
{
#if defined(ARDUINO_ARCH_ESP8266)
#if defined(ARDUINO_ARCH_ESP8266) || defined(ARDUINO_ARCH_RP2040)
yield();
#endif
if (RF24Ethernet.network.update() == EXTERNAL_DATA_TYPE) {
Expand Down

0 comments on commit d661558

Please sign in to comment.