|
6 | 6 |
|
7 | 7 | #### Description
|
8 | 8 |
|
9 |
| -Initializes the ethernet library and network settings. |
| 9 | +Initializes the Ethernet library and network settings. |
10 | 10 |
|
11 | 11 | With version 1.0, the library supports DHCP. Using Ethernet.begin(mac) with the proper network setup, the Ethernet shield will automatically obtain an IP address. This increases the sketch size significantly. To make sure the DHCP lease is properly renewed when needed, be sure to call Ethernet.maintain() regularly.
|
12 | 12 |
|
@@ -2107,7 +2107,7 @@ void loop() {
|
2107 | 2107 | Serial.print(", port ");
|
2108 | 2108 | Serial.println(Udp.remotePort());
|
2109 | 2109 |
|
2110 |
| - // read the packet into packetBufffer |
| 2110 | + // read the packet into packetBuffer |
2111 | 2111 | Udp.read(packetBuffer,UDP_TX_PACKET_MAX_SIZE);
|
2112 | 2112 | Serial.println("Contents:");
|
2113 | 2113 | Serial.println(packetBuffer);
|
@@ -2432,7 +2432,7 @@ void loop() {
|
2432 | 2432 | Serial.print(", port ");
|
2433 | 2433 | Serial.println(Udp.remotePort());
|
2434 | 2434 |
|
2435 |
| - // read the packet into packetBufffer |
| 2435 | + // read the packet into packetBuffer |
2436 | 2436 | Udp.read(packetBuffer,UDP_TX_PACKET_MAX_SIZE);
|
2437 | 2437 | Serial.println("Contents:");
|
2438 | 2438 | Serial.println(packetBuffer);
|
@@ -2597,7 +2597,7 @@ void loop() {
|
2597 | 2597 | Serial.print(", port ");
|
2598 | 2598 | Serial.println(Udp.remotePort());
|
2599 | 2599 |
|
2600 |
| - // read the packet into packetBufffer |
| 2600 | + // read the packet into packetBuffer |
2601 | 2601 | Udp.read(packetBuffer,UDP_TX_PACKET_MAX_SIZE);
|
2602 | 2602 | Serial.println("Contents:");
|
2603 | 2603 | Serial.println(packetBuffer);
|
|
0 commit comments