File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -159,9 +159,9 @@ void loop()
159
159
if (bytes_read > 0 ) {
160
160
udp_rx_msg_buf[bytes_read] = 0 ;
161
161
}
162
- Serial.print (" UDP packet content: " );
162
+ Serial.print (" UDP packet content: \" " );
163
163
Serial.print (reinterpret_cast <char *>(udp_rx_msg_buf));
164
- Serial.println ();
164
+ Serial.println (" \" " );
165
165
}
166
166
}
167
167
Original file line number Diff line number Diff line change @@ -149,9 +149,9 @@ void loop()
149
149
if (bytes_read > 0 ) {
150
150
udp_rx_msg_buf[bytes_read] = 0 ;
151
151
}
152
- Serial.print (" UDP packet content: " );
152
+ Serial.print (" UDP packet content: \" " );
153
153
Serial.print (reinterpret_cast <char *>(udp_rx_msg_buf));
154
- Serial.println ();
154
+ Serial.println (" \" " );
155
155
156
156
/* Send back a reply, to the IP address and port we got the packet from. */
157
157
tc6_inst->beginPacket (tc6_inst->remoteIP (), tc6_inst->remotePort ());
You can’t perform that action at this time.
0 commit comments