Skip to content

Commit

Permalink
networkId: fix c33 begin
Browse files Browse the repository at this point in the history
  • Loading branch information
pennam committed Dec 9, 2024
1 parent d4d2f0a commit b37f2ea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/networkId.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ bool networkId::begin() {
#if defined(ARDUINO_NANO_RP2040_CONNECT) || \
defined(ARDUINO_SAMD_MKRWIFI1010) || \
defined(ARDUINO_SAMD_NANO_33_IOT) || \
defined(ARDUINO_PORTENTA_C33) || \
defined(ARDUINO_UNOR4_WIFI)
WiFi.setTimeout(0);
int result = WiFi.begin("In33dm4c4ddr35", "In33dm4c4ddr35");
return (result != WL_NO_SHIELD) ? true : false;
#elif defined(ARDUINO_PORTENTA_C33)
return true;
#elif defined(ARDUINO_PORTENTA_H7_M7) || \
defined(ARDUINO_NICLA_VISION) || \
defined(ARDUINO_GIGA)
Expand Down

0 comments on commit b37f2ea

Please sign in to comment.