Skip to content

Commit ab2deef

Browse files
committed
Fix: regression - this example is the UDP server.
1 parent c3d290b commit ab2deef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/UDP_Server/UDP_Server.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ void loop()
140140

141141
Serial.print("[");
142142
Serial.print(millis());
143-
Serial.print("] UDP_Client received packet content: \"");
143+
Serial.print("] UDP_Server received packet content: \"");
144144

145145
/* Read from received UDP packet. */
146146
size_t const UDP_RX_MSG_BUF_SIZE = 16 + 1; /* Reserve the last byte for the '\0' termination. */

0 commit comments

Comments
 (0)