Skip to content

Commit 199e520

Browse files
committed
Merge branch 'docs/fix_a_copy_paste_error' into 'master'
fix copy paste error See merge request sdk/ESP8266_RTOS_SDK!1695
2 parents d3a5f99 + f3ca4f8 commit 199e520

File tree

7 files changed

+18
-21
lines changed

7 files changed

+18
-21
lines changed

examples/protocols/sockets/README.md

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# BSD Socket API Examples
33

4-
This directory contains simple examples demonstrating BSD Socket API.
4+
This directory contains simple examples demonstrating BSD Socket API.
55
Each example, contains README.md file with mode detailed informations about that particular example.
66
For more general informations about all examples, see the README.md file in the upper level 'examples' directory.
77
Examples:
@@ -26,8 +26,8 @@ http://wiki.treck.com/Introduction_to_BSD_Sockets
2626

2727
## Host tools
2828

29-
There are many host-side tools which can be used to interact with the UDP/TCP server/client example.
30-
One command line tool is [netcat](http://netcat.sourceforge.net) which can send and receive many kinds of packets.
29+
There are many host-side tools which can be used to interact with the UDP/TCP server/client example.
30+
One command line tool is [netcat](http://netcat.sourceforge.net) which can send and receive many kinds of packets.
3131
Note: please replace `192.168.0.167 3333` with desired IPV4/IPV6 address (displayed in monitor console) and port number in the following commands.
3232

3333
In addition to those tools, simple Python scripts can be found under sockets/scripts directory. Every script is designed to interact with one of the examples.
@@ -74,7 +74,7 @@ IPV6 = 'FE80::32AE:A4FF:FE80:5288'
7474

7575
## Hardware Required
7676

77-
This example can be run on any commonly available ESP32 development board.
77+
This example can be run on any commonly available ESP8266 development board.
7878

7979
## Configure the project
8080

@@ -97,6 +97,3 @@ make -j4 flash monitor
9797
(To exit the serial monitor, type ``Ctrl-]``.)
9898

9999
See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.
100-
101-
102-

examples/protocols/sockets/tcp_client/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ The application creates a TCP socket and tries to connect to the server with pre
99

1010
In order to create TCP server that communicates with TCP Client example, choose one of the following options.
1111

12-
There are many host-side tools which can be used to interact with the UDP/TCP server/client.
13-
One command line tool is [netcat](http://netcat.sourceforge.net) which can send and receive many kinds of packets.
12+
There are many host-side tools which can be used to interact with the UDP/TCP server/client.
13+
One command line tool is [netcat](http://netcat.sourceforge.net) which can send and receive many kinds of packets.
1414
Note: please replace `192.168.0.167 3333` with desired IPV4/IPV6 address (displayed in monitor console) and port number in the following command.
1515

1616
In addition to those tools, simple Python scripts can be found under sockets/scripts directory. Every script is designed to interact with one of the examples.
@@ -30,7 +30,7 @@ PORT = 3333;
3030

3131
## Hardware Required
3232

33-
This example can be run on any commonly available ESP32 development board.
33+
This example can be run on any commonly available ESP8266 development board.
3434

3535
## Configure the project
3636

examples/protocols/sockets/tcp_server/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ The application creates a TCP socket with the specified port number and waits fo
99

1010
In order to create TCP client that communicates with TCP server example, choose one of the following options.
1111

12-
There are many host-side tools which can be used to interact with the UDP/TCP server/client.
13-
One command line tool is [netcat](http://netcat.sourceforge.net) which can send and receive many kinds of packets.
12+
There are many host-side tools which can be used to interact with the UDP/TCP server/client.
13+
One command line tool is [netcat](http://netcat.sourceforge.net) which can send and receive many kinds of packets.
1414
Note: please replace `192.168.0.167 3333` with desired IPV4/IPV6 address (displayed in monitor console) and port number in the following command.
1515

1616
In addition to those tools, simple Python scripts can be found under sockets/scripts directory. Every script is designed to interact with one of the examples.
@@ -32,7 +32,7 @@ IPV6 = 'FE80::32AE:A4FF:FE80:5288'
3232

3333
## Hardware Required
3434

35-
This example can be run on any commonly available ESP32 development board.
35+
This example can be run on any commonly available ESP8266 development board.
3636

3737
## Configure the project
3838

examples/protocols/sockets/udp_client/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ The application creates UDP socket and sends message to the predefined port and
99

1010
In order to create UDP server that communicates with UDP Client example, choose one of the following options.
1111

12-
There are many host-side tools which can be used to interact with the UDP/TCP server/client.
13-
One command line tool is [netcat](http://netcat.sourceforge.net) which can send and receive many kinds of packets.
12+
There are many host-side tools which can be used to interact with the UDP/TCP server/client.
13+
One command line tool is [netcat](http://netcat.sourceforge.net) which can send and receive many kinds of packets.
1414
Note: please replace `192.168.0.167 3333` with desired IPV4/IPV6 address (displayed in monitor console) and port number in the following commands.
1515

1616
In addition to those tools, simple Python scripts can be found under sockets/scripts directory. Every script is designed to interact with one of the examples.
@@ -40,7 +40,7 @@ PORT = 3333;
4040

4141
## Hardware Required
4242

43-
This example can be run on any commonly available ESP32 development board.
43+
This example can be run on any commonly available ESP8266 development board.
4444

4545
## Configure the project
4646

examples/protocols/sockets/udp_server/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ The application creates UDP socket with the specified port number and waits for
99

1010
In order to create UDP client that communicates with UDP server example, choose one of the following options.
1111

12-
There are many host-side tools which can be used to interact with the UDP/TCP server/client.
13-
One command line tool is [netcat](http://netcat.sourceforge.net) which can send and receive many kinds of packets.
12+
There are many host-side tools which can be used to interact with the UDP/TCP server/client.
13+
One command line tool is [netcat](http://netcat.sourceforge.net) which can send and receive many kinds of packets.
1414
Note: please replace `192.168.0.167 3333` with desired IPV4/IPV6 address (displayed in monitor console) and port number in the following commands.
1515

1616
In addition to those tools, simple Python scripts can be found under sockets/scripts directory. Every script is designed to interact with one of the examples.
@@ -42,7 +42,7 @@ IPV6 = 'FE80::32AE:A4FF:FE80:5288'
4242

4343
## Hardware Required
4444

45-
This example can be run on any commonly available ESP32 development board.
45+
This example can be run on any commonly available ESP8266 development board.
4646

4747
## Configure the project
4848

examples/provisioning/legacy/custom_config/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Also, it uses a component provided with this example `custom_provisioning` which
2222

2323
### Hardware Required
2424

25-
Example should be able to run on any commonly available ESP32 development board.
25+
Example should be able to run on any commonly available ESP8266 development board.
2626

2727
### Application Required
2828

examples/provisioning/legacy/softap_prov/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This example can be used, as it is, for adding a provisioning service to any app
2323

2424
### Hardware Required
2525

26-
Example should be able to run on any commonly available ESP32 development board.
26+
Example should be able to run on any commonly available ESP8266 development board.
2727

2828
### Application Required
2929

0 commit comments

Comments
 (0)