Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit 1d93972

Browse files
authored
v1.8.14-3 fixes UDP issue with Nano_RP2040_Connect
### Releases v1.8.14-3 1. Fix issue with UDP for Nano_RP2040_Connect using arduino-pico core. Check [UDP not running with WiFiNINA library (Example WiFiUdpSendReceiveString) #376](earlephilhower/arduino-pico#376)
1 parent 3364b03 commit 1d93972

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/WiFiUdpNtpClient/WiFiUdpNtpClient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ int status = WL_IDLE_STATUS;
6060

6161
unsigned int localPort = 2390; // local port to listen for UDP packets
6262

63-
IPAddress timeServer(129, 6, 15, 28); // time.nist.gov NTP server
63+
IPAddress timeServer(132, 163, 96, 1); // time.nist.gov NTP server
6464

6565
const int NTP_PACKET_SIZE = 48; // NTP time stamp is in the first 48 bytes of the message
6666

0 commit comments

Comments
 (0)