mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
build_app: make multi target support readable
This commit is contained in:
parent
2e14149bff
commit
5b2fa1a5ad
@ -35,7 +35,7 @@ Building a project for ESP32-S2
|
|||||||
|
|
||||||
For some examples this is because required hardware is not included in ESP32-S2 so it cannot be supported. For some examples this is because the example has not yet been updated for ESP32-S2.
|
For some examples this is because required hardware is not included in ESP32-S2 so it cannot be supported. For some examples this is because the example has not yet been updated for ESP32-S2.
|
||||||
|
|
||||||
If building an example, please check the example CMakeLists.txt file for the clause ``SUPPORTED_TARGETS esp32``. If this is present, the example won't work on ESP32-S2.
|
If building an example, please check the README file for the ``Supported Targets`` table. If no ESP32-S2 listed, the example won't work on ESP32-S2.
|
||||||
|
|
||||||
.. highlight:: bash
|
.. highlight:: bash
|
||||||
|
|
||||||
|
@ -588,13 +588,7 @@ Now you are ready to try some other :idf:`examples`, or go straight to developin
|
|||||||
|
|
||||||
Some of examples do not support {IDF_TARGET_NAME} because required hardware is not included in {IDF_TARGET_NAME} so it cannot be supported.
|
Some of examples do not support {IDF_TARGET_NAME} because required hardware is not included in {IDF_TARGET_NAME} so it cannot be supported.
|
||||||
|
|
||||||
.. only:: esp32
|
If building an example, please check the README file for the ``Supported Targets`` table. If this is present including {IDF_TARGET_NAME} target, or the table does not exist at all, the example will work on {IDF_TARGET_NAME}.
|
||||||
|
|
||||||
If building an example, please check the example CMakeLists.txt file for the clause ``SUPPORTED_TARGETS esp32``. If this is present including ``esp32`` target, or ``SUPPORTED_TARGETS`` does not exist at all, the example will work on {IDF_TARGET_NAME}.
|
|
||||||
|
|
||||||
.. only:: esp32s2
|
|
||||||
|
|
||||||
If building an example, please check the example CMakeLists.txt file for the clause ``SUPPORTED_TARGETS esp32s2``. If this is present including ``esp32s2`` target, or ``SUPPORTED_TARGETS`` does not exist at all, the example will work on {IDF_TARGET_NAME}.
|
|
||||||
|
|
||||||
|
|
||||||
Updating ESP-IDF
|
Updating ESP-IDF
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(ble_ancs)
|
project(ble_ancs)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP-IDF BLE ANCS Example
|
ESP-IDF BLE ANCS Example
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(ble_compatibility_test)
|
project(ble_compatibility_test)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP-IDF BLE Compatibility Test Example
|
ESP-IDF BLE Compatibility Test Example
|
||||||
=======================================
|
=======================================
|
||||||
|
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(ble_eddystone_demo)
|
project(ble_eddystone_demo)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP-IDF Eddystone demo
|
ESP-IDF Eddystone demo
|
||||||
========================
|
========================
|
||||||
This example demonstrates Eddystone-compatible BLE scanning of eddystone frame,including UID,URL.
|
This example demonstrates Eddystone-compatible BLE scanning of eddystone frame,including UID,URL.
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(hidd_demos)
|
project(hidd_demos)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP-IDF BLE HID device demo
|
ESP-IDF BLE HID device demo
|
||||||
========================
|
========================
|
||||||
This example Implemented BLE HID device profile related functions, in which the HID device has
|
This example Implemented BLE HID device profile related functions, in which the HID device has
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(ble_ibeacon_demo)
|
project(ble_ibeacon_demo)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
# ESP-IDF iBeacon demo
|
# ESP-IDF iBeacon demo
|
||||||
|
|
||||||
From welcoming people as they arrive at a sporting event to providing information about a nearby museum exhibit, iBeacon opens a new world of possibilities for location awareness, and countless opportunities for interactivity between iOS devices and iBeacon hardware.
|
From welcoming people as they arrive at a sporting event to providing information about a nearby museum exhibit, iBeacon opens a new world of possibilities for location awareness, and countless opportunities for interactivity between iOS devices and iBeacon hardware.
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(spp_client_demo)
|
project(spp_client_demo)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
# ESP-IDF SPP GATT CLIENT demo
|
# ESP-IDF SPP GATT CLIENT demo
|
||||||
|
|
||||||
In Bluetooth classic (BR/EDR) systems, a Serial Port Profile (SPP) is an adopted profile defined by the Bluetooth Special Interest Group (SIG) used to emulate a serial port connection over a Bluetooth wireless connection. For BLE systems, an adopted SPP profile over BLE is not defined, thus emulation of a serial port must be implemented as a vendor-specific custom profile.
|
In Bluetooth classic (BR/EDR) systems, a Serial Port Profile (SPP) is an adopted profile defined by the Bluetooth Special Interest Group (SIG) used to emulate a serial port connection over a Bluetooth wireless connection. For BLE systems, an adopted SPP profile over BLE is not defined, thus emulation of a serial port must be implemented as a vendor-specific custom profile.
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(ble_spp_server_demo)
|
project(ble_spp_server_demo)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
## ESP-IDF GATT SERVER SPP demo
|
## ESP-IDF GATT SERVER SPP demo
|
||||||
|
|
||||||
For description of this application please refer to [ESP-IDF GATT CLIENT SPP demo](../ble_spp_client/README.md)
|
For description of this application please refer to [ESP-IDF GATT CLIENT SPP demo](../ble_spp_client/README.md)
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# CMakeLists in this exact order for cmake to work correctly
|
# CMakeLists in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(throughput_client_demo)
|
project(throughput_client_demo)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP-IDF BLE throughput GATT CLIENT demo
|
ESP-IDF BLE throughput GATT CLIENT demo
|
||||||
========================
|
========================
|
||||||
|
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# CMakeLists in this exact order for cmake to work correctly
|
# CMakeLists in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(throughput_server_demo)
|
project(throughput_server_demo)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP-IDF BLE throughput GATT SERVER demo
|
ESP-IDF BLE throughput GATT SERVER demo
|
||||||
========================
|
========================
|
||||||
|
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(blufi_demo)
|
project(blufi_demo)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP-IDF Blufi demo
|
ESP-IDF Blufi demo
|
||||||
=======================
|
=======================
|
||||||
|
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(gatt_client_demo)
|
project(gatt_client_demo)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP-IDF Gatt Client Demo
|
ESP-IDF Gatt Client Demo
|
||||||
========================
|
========================
|
||||||
|
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(sec_gattc_demo)
|
project(sec_gattc_demo)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP-IDF Gatt Security Client Demo
|
ESP-IDF Gatt Security Client Demo
|
||||||
========================
|
========================
|
||||||
|
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(sec_gatts_demo)
|
project(sec_gatts_demo)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP-IDF Gatt Security Server Demo
|
ESP-IDF Gatt Security Server Demo
|
||||||
========================
|
========================
|
||||||
|
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(gatt_server_demos)
|
project(gatt_server_demos)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP-IDF Gatt Server Demo
|
ESP-IDF Gatt Server Demo
|
||||||
========================
|
========================
|
||||||
|
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(gatt_server_service_table_demo)
|
project(gatt_server_service_table_demo)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP-IDF Gatt Server Service Table Demo
|
ESP-IDF Gatt Server Service Table Demo
|
||||||
===============================================
|
===============================================
|
||||||
|
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(gatt_multi_connect)
|
project(gatt_multi_connect)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP-IDF Gatt Client Multi Connection Demo
|
ESP-IDF Gatt Client Multi Connection Demo
|
||||||
========================
|
========================
|
||||||
|
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# CMakeLists in this exact order for cmake to work correctly
|
# CMakeLists in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(a2dp_sink)
|
project(a2dp_sink)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP-IDF A2DP-SINK demo
|
ESP-IDF A2DP-SINK demo
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# CMakeLists in this exact order for cmake to work correctly
|
# CMakeLists in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(a2dp_source)
|
project(a2dp_source)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP-IDF A2DP-SOURCE demo
|
ESP-IDF A2DP-SOURCE demo
|
||||||
========================
|
========================
|
||||||
|
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(bt_discovery)
|
project(bt_discovery)
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
================= =====
|
||||||
|
Supported Targets ESP32
|
||||||
|
================= =====
|
||||||
|
|
||||||
ESP-IDF BT-INQUIRY demo
|
ESP-IDF BT-INQUIRY demo
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(bt_spp_acceptor_demo)
|
project(bt_spp_acceptor_demo)
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
================= =====
|
||||||
|
Supported Targets ESP32
|
||||||
|
================= =====
|
||||||
|
|
||||||
ESP-IDF BT-SPP-ACCEPTOR demo
|
ESP-IDF BT-SPP-ACCEPTOR demo
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(bt_spp_initiator_demo)
|
project(bt_spp_initiator_demo)
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
================= =====
|
||||||
|
Supported Targets ESP32
|
||||||
|
================= =====
|
||||||
|
|
||||||
ESP-IDF BT-SPP-INITATOR demo
|
ESP-IDF BT-SPP-INITATOR demo
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(bt_spp_vfs_acceptor_demo)
|
project(bt_spp_vfs_acceptor_demo)
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
================= =====
|
||||||
|
Supported Targets ESP32
|
||||||
|
================= =====
|
||||||
|
|
||||||
ESP-IDF BT-SPP-VFS-ACCEPTOR demo
|
ESP-IDF BT-SPP-VFS-ACCEPTOR demo
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(bt_spp_vfs_initiator_demo)
|
project(bt_spp_vfs_initiator_demo)
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
================= =====
|
||||||
|
Supported Targets ESP32
|
||||||
|
================= =====
|
||||||
|
|
||||||
ESP-IDF BT-SPP-VFS-INITATOR demo
|
ESP-IDF BT-SPP-VFS-INITATOR demo
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# CMakeLists in this exact order for cmake to work correctly
|
# CMakeLists in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(hfp_ag)
|
project(hfp_ag)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
# Hands-Free Audio Gateway
|
# Hands-Free Audio Gateway
|
||||||
|
|
||||||
This example is to show how to use the APIs of Hands-Free (HF) Audio Gateway (AG) Component and the effects of them by providing a set of commands. You can use this example to communicate with a Hands-Free Unit (e.g. a headphone set). This example uses UART for user commands.
|
This example is to show how to use the APIs of Hands-Free (HF) Audio Gateway (AG) Component and the effects of them by providing a set of commands. You can use this example to communicate with a Hands-Free Unit (e.g. a headphone set). This example uses UART for user commands.
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# CMakeLists in this exact order for cmake to work correctly
|
# CMakeLists in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(hfp_hf)
|
project(hfp_hf)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
# Hands-Free Unit
|
# Hands-Free Unit
|
||||||
|
|
||||||
This example is to show how to use the APIs of Hands-Free (HF) Unit Component and the effects of them by providing a set of commands. You can use this example to communicate with an Audio Gateway (AG) device (e.g. a smart phone). This example uses UART for user commands.
|
This example is to show how to use the APIs of Hands-Free (HF) Unit Component and the effects of them by providing a set of commands. You can use this example to communicate with an Audio Gateway (AG) device (e.g. a smart phone). This example uses UART for user commands.
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# CMakeLists in this exact order for cmake to work correctly
|
# CMakeLists in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(bt_ble_coex)
|
project(bt_ble_coex)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP-IDF A2DP-GATTS_COEX demo
|
ESP-IDF A2DP-GATTS_COEX demo
|
||||||
======================
|
======================
|
||||||
This demo showcases APIs to create a GATT service and A2DP profile and demonstrates BLE and classic Bluetooth coexistence.
|
This demo showcases APIs to create a GATT service and A2DP profile and demonstrates BLE and classic Bluetooth coexistence.
|
||||||
|
@ -3,5 +3,4 @@
|
|||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
project(gattc_gatts_coex)
|
project(gattc_gatts_coex)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP-IDF Gattc and Gatts Coexistence example
|
ESP-IDF Gattc and Gatts Coexistence example
|
||||||
==============================================
|
==============================================
|
||||||
|
|
||||||
|
@ -4,5 +4,4 @@ cmake_minimum_required(VERSION 3.5)
|
|||||||
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
project(ble_mesh_coex_test)
|
project(ble_mesh_coex_test)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
# Example of BLE Mesh and TCP Server/Client Coexistence
|
# Example of BLE Mesh and TCP Server/Client Coexistence
|
||||||
|
|
||||||
This example introduces how to test the basic functions of `BLE Mesh data interface` and `TCP Server/Client Coexistence`. `BLE Mesh data interface` is GAP scanning and advertising.
|
This example introduces how to test the basic functions of `BLE Mesh data interface` and `TCP Server/Client Coexistence`. `BLE Mesh data interface` is GAP scanning and advertising.
|
||||||
|
@ -3,5 +3,4 @@
|
|||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
project(ble_mesh_console_node)
|
project(ble_mesh_console_node)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
# ble mesh node console demo
|
# ble mesh node console demo
|
||||||
## Introduction
|
## Introduction
|
||||||
This demo implements ble mesh node basic features.Based on this demo, node can be scaned and proved by provisioner, reply get/set message to provisioner.
|
This demo implements ble mesh node basic features.Based on this demo, node can be scaned and proved by provisioner, reply get/set message to provisioner.
|
||||||
|
@ -3,5 +3,4 @@
|
|||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
project(ble_mesh_console_provisioner)
|
project(ble_mesh_console_provisioner)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
# ble mesh provisioner demo
|
# ble mesh provisioner demo
|
||||||
## Introduction
|
## Introduction
|
||||||
This demo implements ble mesh provisioner basic features.Based on this demo, provisioner can scan and prove unprovisioned device, send set/get message. Also can define new model.
|
This demo implements ble mesh provisioner basic features.Based on this demo, provisioner can scan and prove unprovisioned device, send set/get message. Also can define new model.
|
||||||
|
@ -5,5 +5,4 @@ cmake_minimum_required(VERSION 3.5)
|
|||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_vendor_models/fast_prov_vendor_model/components)
|
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_vendor_models/fast_prov_vendor_model/components)
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
project(ble_mesh_fast_prov_client)
|
project(ble_mesh_fast_prov_client)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP BLE Mesh Fast Provisioning Client example
|
ESP BLE Mesh Fast Provisioning Client example
|
||||||
========================
|
========================
|
||||||
|
|
||||||
|
@ -5,5 +5,4 @@ cmake_minimum_required(VERSION 3.5)
|
|||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_vendor_models/fast_prov_vendor_model/components)
|
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_vendor_models/fast_prov_vendor_model/components)
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
project(ble_mesh_fast_prov_server)
|
project(ble_mesh_fast_prov_server)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP BLE Mesh Fast Provisioning Server example
|
ESP BLE Mesh Fast Provisioning Server example
|
||||||
========================
|
========================
|
||||||
|
|
||||||
|
@ -3,5 +3,4 @@
|
|||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
project(onoff_client)
|
project(onoff_client)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP BLE Mesh Client Model Demo
|
ESP BLE Mesh Client Model Demo
|
||||||
========================
|
========================
|
||||||
|
|
||||||
|
@ -3,5 +3,4 @@
|
|||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
project(onoff_server)
|
project(onoff_server)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP BLE Mesh Node demo
|
ESP BLE Mesh Node demo
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
|
@ -3,5 +3,4 @@
|
|||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
project(ble_mesh_provisioner)
|
project(ble_mesh_provisioner)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP BLE Mesh Provisioner demo
|
ESP BLE Mesh Provisioner demo
|
||||||
================================
|
================================
|
||||||
|
|
||||||
|
@ -3,5 +3,4 @@
|
|||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
project(vendor_client)
|
project(vendor_client)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP BLE Mesh Vendor Client Example
|
ESP BLE Mesh Vendor Client Example
|
||||||
==================================
|
==================================
|
||||||
|
|
||||||
|
@ -3,5 +3,4 @@
|
|||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
project(vendor_server)
|
project(vendor_server)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP BLE Mesh Vendor Server Example
|
ESP BLE Mesh Vendor Server Example
|
||||||
==================================
|
==================================
|
||||||
|
|
||||||
|
@ -5,5 +5,4 @@ cmake_minimum_required(VERSION 3.5)
|
|||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_vendor_models/fast_prov_vendor_model/components)
|
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_vendor_models/fast_prov_vendor_model/components)
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
project(ble_mesh_wifi_coexist)
|
project(ble_mesh_wifi_coexist)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP BLE Mesh and WiFi Coexist example
|
ESP BLE Mesh and WiFi Coexist example
|
||||||
========================
|
========================
|
||||||
|
|
||||||
|
@ -0,0 +1,2 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
@ -3,5 +3,4 @@
|
|||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
project(fast_prov_vendor_model)
|
project(fast_prov_vendor_model)
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(controller_hci_uart)
|
project(controller_hci_uart)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP-IDF UART HCI Controller
|
ESP-IDF UART HCI Controller
|
||||||
===========================
|
===========================
|
||||||
|
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# CMakeLists in this exact order for cmake to work correctly
|
# CMakeLists in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(ble_adv)
|
project(ble_adv)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
ESP-IDF VHCI ble_advertising app
|
ESP-IDF VHCI ble_advertising app
|
||||||
================================
|
================================
|
||||||
|
|
||||||
|
@ -3,5 +3,4 @@
|
|||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
project(blecent)
|
project(blecent)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
# BLE central example
|
# BLE central example
|
||||||
|
|
||||||
(See the README.md file in the upper level 'examples' directory for more information about examples.)
|
(See the README.md file in the upper level 'examples' directory for more information about examples.)
|
||||||
|
@ -3,5 +3,4 @@
|
|||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
project(blehr)
|
project(blehr)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
# BLE Heart Rate Measurement example
|
# BLE Heart Rate Measurement example
|
||||||
|
|
||||||
(See the README.md file in the upper level 'examples' directory for more information about examples.)
|
(See the README.md file in the upper level 'examples' directory for more information about examples.)
|
||||||
|
@ -3,5 +3,4 @@
|
|||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
project(blemesh)
|
project(blemesh)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
# BLE Mesh example
|
# BLE Mesh example
|
||||||
|
|
||||||
(See the README.md file in the upper level 'examples' directory for more information about examples.)
|
(See the README.md file in the upper level 'examples' directory for more information about examples.)
|
||||||
|
@ -3,5 +3,4 @@
|
|||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
project(bleprph)
|
project(bleprph)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
# BLE peripheral example
|
# BLE peripheral example
|
||||||
|
|
||||||
(See the README.md file in the upper level 'examples' directory for more information about examples.)
|
(See the README.md file in the upper level 'examples' directory for more information about examples.)
|
||||||
|
@ -2,7 +2,6 @@ cmake_minimum_required(VERSION 3.5)
|
|||||||
|
|
||||||
project(idf_as_lib C)
|
project(idf_as_lib C)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
if("${TARGET}" STREQUAL "esp32")
|
if("${TARGET}" STREQUAL "esp32")
|
||||||
# Include for ESP-IDF build system functions
|
# Include for ESP-IDF build system functions
|
||||||
include($ENV{IDF_PATH}/tools/cmake/idf.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/idf.cmake)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
# Using ESP-IDF in Custom CMake Projects
|
# Using ESP-IDF in Custom CMake Projects
|
||||||
|
|
||||||
This example illustrates using ESP-IDF components as libraries in custom CMake projects. The application
|
This example illustrates using ESP-IDF components as libraries in custom CMake projects. The application
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(adc)
|
project(adc)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
# ADC1 Example
|
# ADC1 Example
|
||||||
|
|
||||||
(See the README.md file in the upper level 'examples' directory for more information about examples.)
|
(See the README.md file in the upper level 'examples' directory for more information about examples.)
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(adc2)
|
project(adc2)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
# ADC2 Example
|
# ADC2 Example
|
||||||
|
|
||||||
(See the README.md file in the upper level 'examples' directory for more information about examples.)
|
(See the README.md file in the upper level 'examples' directory for more information about examples.)
|
||||||
|
@ -2,6 +2,5 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
set(SUPPORTED_TARGETS esp32)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(can_alert_and_recovery_example)
|
project(can_alert_and_recovery_example)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
| Supported Targets | ESP32 |
|
||||||
|
| ----------------- | ----- |
|
||||||
|
|
||||||
# CAN Alert and Recovery Example
|
# CAN Alert and Recovery Example
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user