esp-idf/examples/protocols
Harshit Malpani 5a4fda230a fix(esp_http_client): Add test case in esp_http_client example
Add a test case in esp_http_client example to test HTTP_METHOD_HEAD
with async mode
2024-01-08 15:31:55 +08:00
..
cbor cbor: Update cbor component version in idf_component.yml file in example 2022-11-14 10:08:07 +05:30
coap_client coap: Update examples to use latest features of libcoap component 2022-07-28 13:11:52 +00:00
coap_server coap: Update examples to use latest features of libcoap component 2022-07-28 13:11:52 +00:00
esp_http_client fix(esp_http_client): Add test case in esp_http_client example 2024-01-08 15:31:55 +08:00
esp_local_ctrl fix(examples): Fix encoding issue in esp_local_ctrl's proto script 2023-12-26 14:06:48 +05:30
http2_request esp_netif/lwip: Fix core-locking config (v5.0) 2023-03-21 11:09:56 +01:00
http_request docs: changes docs supported targets tables 2022-07-14 08:26:32 +08:00
http_server Merge branch 'bugfix/fix_memory_leak_in_ws_server_example_v5.0' into 'release/v5.0' 2023-05-29 13:21:58 +08:00
https_mbedtls protocols/security: Remove -Wno-format compile option for examples 2022-12-21 14:39:46 +05:30
https_request fix(example/http): Fixed potential memory leak/crash in when handling error condition 2023-12-13 10:10:43 +05:30
https_server esp_netif/lwip: Fix deps cycles to "lwip -> esp_netif -> phy-drivers" 2022-07-20 14:59:07 +02:00
https_x509_bundle tests: update Root certificate for the test endpoints 2023-05-17 15:28:23 +05:30
icmp_echo doc: redirect console page 2022-11-02 16:11:24 +08:00
l2tap docs: changes docs supported targets tables 2022-07-14 08:26:32 +08:00
modbus modbus remove example tests 2023-03-20 13:12:30 +01:00
mqtt lwip: Fix lwiopts macro expansion and dhcps-test 2023-03-21 11:21:07 +01:00
mqtt5 ci: Fix mqtt broker is not available 2022-10-10 02:38:28 +00:00
smtp_client docs: changes docs supported targets tables 2022-07-14 08:26:32 +08:00
sntp esp_netif/lwip: Fix core-locking config (v5.0) 2023-03-21 11:09:56 +01:00
sockets fix(esp_netif): Make esp_netif_next_unsafe() public and update usage 2023-11-27 08:22:55 +01:00
static_ip docs: changes docs supported targets tables 2022-07-14 08:26:32 +08:00
.build-test-rules.yml Add mqtt5 build test rules 2022-07-28 06:24:43 +00:00
README.md common_components: add wifi connect console commands 2022-07-15 01:16:27 +08:00

Protocols Examples

Implementation of internet communication protocols and services.

See the README.md file in the upper level examples directory for more information about examples.

Establishing Wi-Fi or Ethernet Connection

About the example_connect() Function

Protocols examples use a simple helper function, example_connect(), to establish Wi-Fi and/or Ethernet connection. This function is implemented in examples/common_components/protocol_examples_common/include/protocol_examples_common.h, and has a very simple behavior: block until connection is established and IP address is obtained, then return. This function is used to reduce the amount of boilerplate and to keep the example code focused on the protocol or library being demonstrated.

The simple example_connect() function does not handle timeouts, does not gracefully handle various error conditions, and is only suited for use in examples. When developing real applications, this helper function needs to be replaced with full Wi-Fi / Ethernet connection handling code. Such code can be found in examples/wifi/getting_started/ and examples/ethernet/basic/ examples.

Configuring the Example

To configure the example to use Wi-Fi, Ethernet or both connections, open the project configuration menu (idf.py menuconfig) and navigate to "Example Connection Configuration" menu. Select either "Wi-Fi" or "Ethernet" or both in the "Connect using" choice.

When connecting using Wi-Fi, enter SSID and password of your Wi-Fi access point into the corresponding fields. If connecting to an open Wi-Fi network, keep the password field empty.

When connecting using Ethernet, set up PHY type and configuration in the provided fields. If using Ethernet for the first time, it is recommended to start with the Ethernet example readme, which contains instructions for connecting and configuring the PHY. Once Ethernet example obtains IP address successfully, proceed to the protocols example and set the same configuration options.

Disabling IPv6

By default, example_connect() function waits until Wi-Fi or Ethernet connection is established, and IPv4 address and IPv6 link-local address are obtained. In network environments where IPv6 link-local address cannot be obtained, disable "Obtain IPv6 link-local address" option found in "Example Connection Configuration" menu.