mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-05-17 07:06:41 +08:00
fix copy paste error
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
|
||||
# BSD Socket API Examples
|
||||
|
||||
This directory contains simple examples demonstrating BSD Socket API.
|
||||
This directory contains simple examples demonstrating BSD Socket API.
|
||||
Each example, contains README.md file with mode detailed informations about that particular example.
|
||||
For more general informations about all examples, see the README.md file in the upper level 'examples' directory.
|
||||
Examples:
|
||||
@ -26,8 +26,8 @@ http://wiki.treck.com/Introduction_to_BSD_Sockets
|
||||
|
||||
## Host tools
|
||||
|
||||
There are many host-side tools which can be used to interact with the UDP/TCP server/client example.
|
||||
One command line tool is [netcat](http://netcat.sourceforge.net) which can send and receive many kinds of packets.
|
||||
There are many host-side tools which can be used to interact with the UDP/TCP server/client example.
|
||||
One command line tool is [netcat](http://netcat.sourceforge.net) which can send and receive many kinds of packets.
|
||||
Note: please replace `192.168.0.167 3333` with desired IPV4/IPV6 address (displayed in monitor console) and port number in the following commands.
|
||||
|
||||
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'
|
||||
|
||||
## Hardware Required
|
||||
|
||||
This example can be run on any commonly available ESP32 development board.
|
||||
This example can be run on any commonly available ESP8266 development board.
|
||||
|
||||
## Configure the project
|
||||
|
||||
@ -97,6 +97,3 @@ make -j4 flash monitor
|
||||
(To exit the serial monitor, type ``Ctrl-]``.)
|
||||
|
||||
See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.
|
||||
|
||||
|
||||
|
||||
|
@ -9,8 +9,8 @@ The application creates a TCP socket and tries to connect to the server with pre
|
||||
|
||||
In order to create TCP server that communicates with TCP Client example, choose one of the following options.
|
||||
|
||||
There are many host-side tools which can be used to interact with the UDP/TCP server/client.
|
||||
One command line tool is [netcat](http://netcat.sourceforge.net) which can send and receive many kinds of packets.
|
||||
There are many host-side tools which can be used to interact with the UDP/TCP server/client.
|
||||
One command line tool is [netcat](http://netcat.sourceforge.net) which can send and receive many kinds of packets.
|
||||
Note: please replace `192.168.0.167 3333` with desired IPV4/IPV6 address (displayed in monitor console) and port number in the following command.
|
||||
|
||||
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;
|
||||
|
||||
## Hardware Required
|
||||
|
||||
This example can be run on any commonly available ESP32 development board.
|
||||
This example can be run on any commonly available ESP8266 development board.
|
||||
|
||||
## Configure the project
|
||||
|
||||
|
@ -9,8 +9,8 @@ The application creates a TCP socket with the specified port number and waits fo
|
||||
|
||||
In order to create TCP client that communicates with TCP server example, choose one of the following options.
|
||||
|
||||
There are many host-side tools which can be used to interact with the UDP/TCP server/client.
|
||||
One command line tool is [netcat](http://netcat.sourceforge.net) which can send and receive many kinds of packets.
|
||||
There are many host-side tools which can be used to interact with the UDP/TCP server/client.
|
||||
One command line tool is [netcat](http://netcat.sourceforge.net) which can send and receive many kinds of packets.
|
||||
Note: please replace `192.168.0.167 3333` with desired IPV4/IPV6 address (displayed in monitor console) and port number in the following command.
|
||||
|
||||
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'
|
||||
|
||||
## Hardware Required
|
||||
|
||||
This example can be run on any commonly available ESP32 development board.
|
||||
This example can be run on any commonly available ESP8266 development board.
|
||||
|
||||
## Configure the project
|
||||
|
||||
|
@ -9,8 +9,8 @@ The application creates UDP socket and sends message to the predefined port and
|
||||
|
||||
In order to create UDP server that communicates with UDP Client example, choose one of the following options.
|
||||
|
||||
There are many host-side tools which can be used to interact with the UDP/TCP server/client.
|
||||
One command line tool is [netcat](http://netcat.sourceforge.net) which can send and receive many kinds of packets.
|
||||
There are many host-side tools which can be used to interact with the UDP/TCP server/client.
|
||||
One command line tool is [netcat](http://netcat.sourceforge.net) which can send and receive many kinds of packets.
|
||||
Note: please replace `192.168.0.167 3333` with desired IPV4/IPV6 address (displayed in monitor console) and port number in the following commands.
|
||||
|
||||
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;
|
||||
|
||||
## Hardware Required
|
||||
|
||||
This example can be run on any commonly available ESP32 development board.
|
||||
This example can be run on any commonly available ESP8266 development board.
|
||||
|
||||
## Configure the project
|
||||
|
||||
|
@ -9,8 +9,8 @@ The application creates UDP socket with the specified port number and waits for
|
||||
|
||||
In order to create UDP client that communicates with UDP server example, choose one of the following options.
|
||||
|
||||
There are many host-side tools which can be used to interact with the UDP/TCP server/client.
|
||||
One command line tool is [netcat](http://netcat.sourceforge.net) which can send and receive many kinds of packets.
|
||||
There are many host-side tools which can be used to interact with the UDP/TCP server/client.
|
||||
One command line tool is [netcat](http://netcat.sourceforge.net) which can send and receive many kinds of packets.
|
||||
Note: please replace `192.168.0.167 3333` with desired IPV4/IPV6 address (displayed in monitor console) and port number in the following commands.
|
||||
|
||||
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'
|
||||
|
||||
## Hardware Required
|
||||
|
||||
This example can be run on any commonly available ESP32 development board.
|
||||
This example can be run on any commonly available ESP8266 development board.
|
||||
|
||||
## Configure the project
|
||||
|
||||
|
@ -22,7 +22,7 @@ Also, it uses a component provided with this example `custom_provisioning` which
|
||||
|
||||
### Hardware Required
|
||||
|
||||
Example should be able to run on any commonly available ESP32 development board.
|
||||
Example should be able to run on any commonly available ESP8266 development board.
|
||||
|
||||
### Application Required
|
||||
|
||||
|
@ -23,7 +23,7 @@ This example can be used, as it is, for adding a provisioning service to any app
|
||||
|
||||
### Hardware Required
|
||||
|
||||
Example should be able to run on any commonly available ESP32 development board.
|
||||
Example should be able to run on any commonly available ESP8266 development board.
|
||||
|
||||
### Application Required
|
||||
|
||||
|
Reference in New Issue
Block a user