From 926e038cd91a247839bf152779373783fa08d4c1 Mon Sep 17 00:00:00 2001 From: Yuhan Wei Date: Mon, 26 Aug 2024 22:38:24 +0800 Subject: [PATCH] fix(ble): Removed unsupported sdkconfig in BLE get started examples --- .../bluetooth/ble_get_started/nimble/NimBLE_Beacon/README.md | 4 ++-- .../ble_get_started/nimble/NimBLE_Connection/README.md | 5 ++--- .../nimble/NimBLE_Connection/sdkconfig.defaults.esp32c5 | 2 -- .../nimble/NimBLE_Connection/sdkconfig.defaults.esp32s2 | 2 -- .../ble_get_started/nimble/NimBLE_GATT_Server/README.md | 4 ++-- .../nimble/NimBLE_GATT_Server/sdkconfig.defaults.esp32c5 | 2 -- .../nimble/NimBLE_GATT_Server/sdkconfig.defaults.esp32s2 | 2 -- .../ble_get_started/nimble/NimBLE_Security/README.md | 4 ++-- .../nimble/NimBLE_Security/sdkconfig.defaults.esp32c5 | 2 -- .../nimble/NimBLE_Security/sdkconfig.defaults.esp32s2 | 2 -- 10 files changed, 8 insertions(+), 21 deletions(-) delete mode 100644 examples/bluetooth/ble_get_started/nimble/NimBLE_Connection/sdkconfig.defaults.esp32c5 delete mode 100644 examples/bluetooth/ble_get_started/nimble/NimBLE_Connection/sdkconfig.defaults.esp32s2 delete mode 100644 examples/bluetooth/ble_get_started/nimble/NimBLE_GATT_Server/sdkconfig.defaults.esp32c5 delete mode 100644 examples/bluetooth/ble_get_started/nimble/NimBLE_GATT_Server/sdkconfig.defaults.esp32s2 delete mode 100644 examples/bluetooth/ble_get_started/nimble/NimBLE_Security/sdkconfig.defaults.esp32c5 delete mode 100644 examples/bluetooth/ble_get_started/nimble/NimBLE_Security/sdkconfig.defaults.esp32s2 diff --git a/examples/bluetooth/ble_get_started/nimble/NimBLE_Beacon/README.md b/examples/bluetooth/ble_get_started/nimble/NimBLE_Beacon/README.md index f619b8dd14..340f46dd0c 100644 --- a/examples/bluetooth/ble_get_started/nimble/NimBLE_Beacon/README.md +++ b/examples/bluetooth/ble_get_started/nimble/NimBLE_Beacon/README.md @@ -1,5 +1,5 @@ -| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-H2 | ESP32-S3 | -| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- | +| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-H2 | ESP32-S3 | +| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | # NimBLE Beacon Example diff --git a/examples/bluetooth/ble_get_started/nimble/NimBLE_Connection/README.md b/examples/bluetooth/ble_get_started/nimble/NimBLE_Connection/README.md index c5011ad4c9..1bf3fb15ff 100644 --- a/examples/bluetooth/ble_get_started/nimble/NimBLE_Connection/README.md +++ b/examples/bluetooth/ble_get_started/nimble/NimBLE_Connection/README.md @@ -1,5 +1,5 @@ -| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-H2 | ESP32-S3 | -| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- | +| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-H2 | ESP32-S3 | +| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | # NimBLE Connection Example @@ -266,4 +266,3 @@ If everything goes well, except for what we have seen in NimBLE Beacon example, ## Troubleshooting For any technical queries, please file an [issue](https://github.com/espressif/esp-idf/issues) on GitHub. We will get back to you soon. - diff --git a/examples/bluetooth/ble_get_started/nimble/NimBLE_Connection/sdkconfig.defaults.esp32c5 b/examples/bluetooth/ble_get_started/nimble/NimBLE_Connection/sdkconfig.defaults.esp32c5 deleted file mode 100644 index 053efed5b7..0000000000 --- a/examples/bluetooth/ble_get_started/nimble/NimBLE_Connection/sdkconfig.defaults.esp32c5 +++ /dev/null @@ -1,2 +0,0 @@ -CONFIG_BLINK_GPIO=6 -CONFIG_BLINK_LED_STRIP=y diff --git a/examples/bluetooth/ble_get_started/nimble/NimBLE_Connection/sdkconfig.defaults.esp32s2 b/examples/bluetooth/ble_get_started/nimble/NimBLE_Connection/sdkconfig.defaults.esp32s2 deleted file mode 100644 index 25fd93b023..0000000000 --- a/examples/bluetooth/ble_get_started/nimble/NimBLE_Connection/sdkconfig.defaults.esp32s2 +++ /dev/null @@ -1,2 +0,0 @@ -CONFIG_BLINK_LED_STRIP=y -CONFIG_BLINK_GPIO=18 diff --git a/examples/bluetooth/ble_get_started/nimble/NimBLE_GATT_Server/README.md b/examples/bluetooth/ble_get_started/nimble/NimBLE_GATT_Server/README.md index d4aaed0aff..f7625cc259 100644 --- a/examples/bluetooth/ble_get_started/nimble/NimBLE_GATT_Server/README.md +++ b/examples/bluetooth/ble_get_started/nimble/NimBLE_GATT_Server/README.md @@ -1,5 +1,5 @@ -| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-H2 | ESP32-S3 | -| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- | +| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-H2 | ESP32-S3 | +| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | # NimBLE GATT Server Example diff --git a/examples/bluetooth/ble_get_started/nimble/NimBLE_GATT_Server/sdkconfig.defaults.esp32c5 b/examples/bluetooth/ble_get_started/nimble/NimBLE_GATT_Server/sdkconfig.defaults.esp32c5 deleted file mode 100644 index 053efed5b7..0000000000 --- a/examples/bluetooth/ble_get_started/nimble/NimBLE_GATT_Server/sdkconfig.defaults.esp32c5 +++ /dev/null @@ -1,2 +0,0 @@ -CONFIG_BLINK_GPIO=6 -CONFIG_BLINK_LED_STRIP=y diff --git a/examples/bluetooth/ble_get_started/nimble/NimBLE_GATT_Server/sdkconfig.defaults.esp32s2 b/examples/bluetooth/ble_get_started/nimble/NimBLE_GATT_Server/sdkconfig.defaults.esp32s2 deleted file mode 100644 index 25fd93b023..0000000000 --- a/examples/bluetooth/ble_get_started/nimble/NimBLE_GATT_Server/sdkconfig.defaults.esp32s2 +++ /dev/null @@ -1,2 +0,0 @@ -CONFIG_BLINK_LED_STRIP=y -CONFIG_BLINK_GPIO=18 diff --git a/examples/bluetooth/ble_get_started/nimble/NimBLE_Security/README.md b/examples/bluetooth/ble_get_started/nimble/NimBLE_Security/README.md index bb7bec7eb5..5c7d982a7e 100644 --- a/examples/bluetooth/ble_get_started/nimble/NimBLE_Security/README.md +++ b/examples/bluetooth/ble_get_started/nimble/NimBLE_Security/README.md @@ -1,5 +1,5 @@ -| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-H2 | ESP32-S3 | -| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- | +| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-H2 | ESP32-S3 | +| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | # NimBLE Security Example diff --git a/examples/bluetooth/ble_get_started/nimble/NimBLE_Security/sdkconfig.defaults.esp32c5 b/examples/bluetooth/ble_get_started/nimble/NimBLE_Security/sdkconfig.defaults.esp32c5 deleted file mode 100644 index 053efed5b7..0000000000 --- a/examples/bluetooth/ble_get_started/nimble/NimBLE_Security/sdkconfig.defaults.esp32c5 +++ /dev/null @@ -1,2 +0,0 @@ -CONFIG_BLINK_GPIO=6 -CONFIG_BLINK_LED_STRIP=y diff --git a/examples/bluetooth/ble_get_started/nimble/NimBLE_Security/sdkconfig.defaults.esp32s2 b/examples/bluetooth/ble_get_started/nimble/NimBLE_Security/sdkconfig.defaults.esp32s2 deleted file mode 100644 index 25fd93b023..0000000000 --- a/examples/bluetooth/ble_get_started/nimble/NimBLE_Security/sdkconfig.defaults.esp32s2 +++ /dev/null @@ -1,2 +0,0 @@ -CONFIG_BLINK_LED_STRIP=y -CONFIG_BLINK_GPIO=18