From e83f80146280be70ed619899dc3f2948b9200cab Mon Sep 17 00:00:00 2001 From: Harshit Malpani Date: Wed, 1 Jun 2022 16:11:36 +0530 Subject: [PATCH] Update examples README to include esp32c2 as supported device. --- examples/protocols/esp_local_ctrl/README.md | 3 --- examples/protocols/https_mbedtls/README.md | 2 -- examples/protocols/https_request/README.md | 2 -- examples/protocols/https_server/simple/README.md | 2 -- examples/protocols/https_server/wss_server/README.md | 2 -- examples/protocols/https_x509_bundle/README.md | 2 -- examples/system/ota/advanced_https_ota/README.md | 2 -- examples/system/ota/native_ota_example/README.md | 2 -- examples/system/ota/pre_encrypted_ota/README.md | 2 -- examples/system/ota/simple_ota_example/README.md | 2 -- 10 files changed, 21 deletions(-) diff --git a/examples/protocols/esp_local_ctrl/README.md b/examples/protocols/esp_local_ctrl/README.md index 309c6da72e..d0ca7d48a0 100644 --- a/examples/protocols/esp_local_ctrl/README.md +++ b/examples/protocols/esp_local_ctrl/README.md @@ -1,6 +1,3 @@ -| Supported Targets | ESP32 | ESP32-S2 | ESP32-S3 | ESP32-C3 | -| ----------------- | ----- | -------- | -------- | -------- | - # ESP Local Control using HTTPS server This example creates a `esp_local_ctrl` service over HTTPS transport, for securely controlling the device over local network. In this case the device name is resolved through `mDNS`, which in this example is `my_esp_ctrl_device.local`. diff --git a/examples/protocols/https_mbedtls/README.md b/examples/protocols/https_mbedtls/README.md index b86aa17468..52b636b326 100644 --- a/examples/protocols/https_mbedtls/README.md +++ b/examples/protocols/https_mbedtls/README.md @@ -1,5 +1,3 @@ -| Supported Targets | ESP32 | ESP32-S2 | ESP32-S3 | ESP32-C3 | -| ----------------- | ----- | -------- | -------- | -------- | # HTTP server with TLS support using mbedTLS (See the README.md file in the upper level 'examples' directory for more information about examples.) diff --git a/examples/protocols/https_request/README.md b/examples/protocols/https_request/README.md index 821f6cbe1d..05fed4de5a 100644 --- a/examples/protocols/https_request/README.md +++ b/examples/protocols/https_request/README.md @@ -1,5 +1,3 @@ -| Supported Targets | ESP32 | ESP32-S2 | ESP32-S3 | ESP32-C3 | -| ----------------- | ----- | -------- | -------- | -------- | # HTTPS Request Example Uses APIs from `esp-tls` component to make a very simple HTTPS request over a secure connection, including verifying the server TLS certificate. diff --git a/examples/protocols/https_server/simple/README.md b/examples/protocols/https_server/simple/README.md index 5c3ab84f0a..fce84c0aac 100644 --- a/examples/protocols/https_server/simple/README.md +++ b/examples/protocols/https_server/simple/README.md @@ -1,5 +1,3 @@ -| Supported Targets | ESP32 | ESP32-S2 | ESP32-S3 | ESP32-C3 | -| ----------------- | ----- | -------- | -------- | -------- | # HTTP server with SSL support using OpenSSL This example creates a SSL server that returns a simple HTML page when you visit its root URL. diff --git a/examples/protocols/https_server/wss_server/README.md b/examples/protocols/https_server/wss_server/README.md index 3d9c015561..781d8520e7 100644 --- a/examples/protocols/https_server/wss_server/README.md +++ b/examples/protocols/https_server/wss_server/README.md @@ -1,5 +1,3 @@ -| Supported Targets | ESP32 | ESP32-S2 | ESP32-S3 | ESP32-C3 | -| ----------------- | ----- | -------- | -------- | -------- | # HTTP Websocket server with SSL support This example creates a SSL server and employs a simple Websocket request handler. It demonstrates handling multiple clients from the server including: diff --git a/examples/protocols/https_x509_bundle/README.md b/examples/protocols/https_x509_bundle/README.md index e1077477db..a6fb6b819c 100644 --- a/examples/protocols/https_x509_bundle/README.md +++ b/examples/protocols/https_x509_bundle/README.md @@ -1,5 +1,3 @@ -| Supported Targets | ESP32 | ESP32-S2 | ESP32-S3 | ESP32-C3 | -| ----------------- | ----- | -------- | -------- | -------- | # HTTPS x509 Bundle Example This example shows how to use the ESP certificate bundle utility to embed a bundle of x509 certificates and use them to diff --git a/examples/system/ota/advanced_https_ota/README.md b/examples/system/ota/advanced_https_ota/README.md index 2508f1f221..749016e895 100644 --- a/examples/system/ota/advanced_https_ota/README.md +++ b/examples/system/ota/advanced_https_ota/README.md @@ -1,5 +1,3 @@ -| Supported Targets | ESP32 | ESP32-S2 | ESP32-S3 | ESP32-C3 | -| ----------------- | ----- | -------- | -------- | -------- | # Advanced HTTPS OTA example This example is based on `esp_https_ota` component's APIs. diff --git a/examples/system/ota/native_ota_example/README.md b/examples/system/ota/native_ota_example/README.md index a53403e847..be57ce55ec 100644 --- a/examples/system/ota/native_ota_example/README.md +++ b/examples/system/ota/native_ota_example/README.md @@ -1,5 +1,3 @@ -| Supported Targets | ESP32 | ESP32-S2 | ESP32-S3 | ESP32-C3 | -| ----------------- | ----- | -------- | -------- | -------- | # Native OTA example This example is based on `app_update` component's APIs. diff --git a/examples/system/ota/pre_encrypted_ota/README.md b/examples/system/ota/pre_encrypted_ota/README.md index f44a2bed00..66bd2c848b 100644 --- a/examples/system/ota/pre_encrypted_ota/README.md +++ b/examples/system/ota/pre_encrypted_ota/README.md @@ -1,5 +1,3 @@ -| Supported Targets | ESP32 | ESP32-S2 | ESP32-S3 | ESP32-C3 | -| ----------------- | ----- | -------- | -------- | -------- | # Encrypted Binary OTA This example demonstrates OTA updates with pre-encrypted binary using `esp_encrypted_img` component's APIs and tool. diff --git a/examples/system/ota/simple_ota_example/README.md b/examples/system/ota/simple_ota_example/README.md index 2b02067a2a..31a340974d 100644 --- a/examples/system/ota/simple_ota_example/README.md +++ b/examples/system/ota/simple_ota_example/README.md @@ -1,5 +1,3 @@ -| Supported Targets | ESP32 | ESP32-S2 | ESP32-S3 | ESP32-C3 | -| ----------------- | ----- | -------- | -------- | -------- | # Simple OTA example This example is based on `esp_https_ota` component's APIs.