mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
feat(examples): add local components via idf_component.yml
Specifying all the dependencies (managed and local) in the manifest makes it easier for users to see every component the example depends on.
This commit is contained in:
parent
ae80ad7ac7
commit
6d87100a70
@ -2,11 +2,6 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/button
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/light_driver
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_nvs)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
|
|
||||||
project(aligenie_demo)
|
project(aligenie_demo)
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
dependencies:
|
||||||
|
button:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/button
|
||||||
|
light_driver:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/light_driver
|
||||||
|
example_init:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
||||||
|
example_nvs:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_nvs
|
@ -2,10 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/button
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/light_driver
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_nvs)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(onoff_client)
|
project(onoff_client)
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
dependencies:
|
||||||
|
button:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/button
|
||||||
|
light_driver:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/light_driver
|
||||||
|
example_init:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
||||||
|
example_nvs:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_nvs
|
@ -2,9 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/button
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/light_driver
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_nvs)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(onoff_server)
|
project(onoff_server)
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
dependencies:
|
||||||
|
button:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/button
|
||||||
|
light_driver:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/light_driver
|
||||||
|
example_init:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
||||||
|
example_nvs:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_nvs
|
@ -2,8 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/fast_prov)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(fast_prov_client)
|
project(fast_prov_client)
|
||||||
|
@ -0,0 +1,5 @@
|
|||||||
|
dependencies:
|
||||||
|
example_init:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
||||||
|
fast_prov:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/fast_prov
|
@ -2,8 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/fast_prov)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(fast_prov_server)
|
project(fast_prov_server)
|
||||||
|
@ -0,0 +1,5 @@
|
|||||||
|
dependencies:
|
||||||
|
example_init:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
||||||
|
fast_prov:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/fast_prov
|
@ -2,9 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/button
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_nvs)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(onoff_client)
|
project(onoff_client)
|
||||||
|
@ -0,0 +1,7 @@
|
|||||||
|
dependencies:
|
||||||
|
button:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/button
|
||||||
|
example_init:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
||||||
|
example_nvs:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_nvs
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(onoff_server)
|
project(onoff_server)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
example_init:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(provisioner)
|
project(provisioner)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
example_init:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
@ -2,10 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/button
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/light_driver
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_nvs)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(ble_mesh_provisioner)
|
project(ble_mesh_provisioner)
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
dependencies:
|
||||||
|
button:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/button
|
||||||
|
light_driver:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/light_driver
|
||||||
|
example_init:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
||||||
|
example_nvs:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_nvs
|
@ -2,9 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/light_driver
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_nvs)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(onoff_server)
|
project(onoff_server)
|
||||||
|
@ -0,0 +1,7 @@
|
|||||||
|
dependencies:
|
||||||
|
light_driver:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/light_driver
|
||||||
|
example_init:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
||||||
|
example_nvs:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_nvs
|
@ -2,9 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/light_driver
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_nvs)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(onoff_server)
|
project(onoff_server)
|
||||||
|
@ -0,0 +1,7 @@
|
|||||||
|
dependencies:
|
||||||
|
light_driver:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/light_driver
|
||||||
|
example_init:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
||||||
|
example_nvs:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_nvs
|
@ -2,8 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/button
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(sensor_client)
|
project(sensor_client)
|
||||||
|
@ -0,0 +1,5 @@
|
|||||||
|
dependencies:
|
||||||
|
button:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/button
|
||||||
|
example_init:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(sensor_server)
|
project(sensor_server)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
example_init:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
@ -2,9 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/button
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_nvs)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(vendor_client)
|
project(vendor_client)
|
||||||
|
@ -0,0 +1,7 @@
|
|||||||
|
dependencies:
|
||||||
|
button:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/button
|
||||||
|
example_init:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
||||||
|
example_nvs:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_nvs
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(vendor_server)
|
project(vendor_server)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
example_init:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
@ -2,9 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
|
||||||
$ENV{IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/fast_prov
|
|
||||||
$ENV{IDF_PATH}/examples/common_components/iperf)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(wifi_coexist)
|
project(wifi_coexist)
|
||||||
|
@ -0,0 +1,7 @@
|
|||||||
|
dependencies:
|
||||||
|
fast_prov:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/fast_prov
|
||||||
|
example_init:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/esp_ble_mesh/common_components/example_init
|
||||||
|
iperf:
|
||||||
|
path: ${IDF_PATH}/examples/common_components/iperf
|
@ -2,8 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
# This example uses an extra component for common functions for Bluetooth HCI layer.
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/hci/hci_common_component)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(ble_adv_scan)
|
project(ble_adv_scan)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
hci_common_component:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/hci/hci_common_component
|
@ -2,8 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
# This example uses an extra component for common functions for Bluetooth HCI layer.
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/hci/hci_common_component)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(ble_adv)
|
project(ble_adv)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
hci_common_component:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/hci/hci_common_component
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/nimble/common/nimble_peripheral_utils)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(ble_dynamic_service)
|
project(ble_dynamic_service)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
nimble_peripheral_utils:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/nimble/common/nimble_peripheral_utils
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/nimble/common/nimble_central_utils)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(enc_adv_data_cent)
|
project(enc_adv_data_cent)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
nimble_central_utils:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/nimble/common/nimble_central_utils
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/nimble/common/nimble_peripheral_utils)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(enc_adv_data_prph)
|
project(enc_adv_data_prph)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
nimble_peripheral_utils:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/nimble/common/nimble_peripheral_utils
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/nimble/common/nimble_central_utils)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(htp_cent)
|
project(htp_cent)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
nimble_central_utils:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/nimble/common/nimble_central_utils
|
@ -2,7 +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(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/nimble/common/nimble_central_utils)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(coc_blecent)
|
project(coc_blecent)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
nimble_central_utils:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/nimble/common/nimble_central_utils
|
@ -2,7 +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(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/nimble/common/nimble_peripheral_utils)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(coc_bleprph)
|
project(coc_bleprph)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
nimble_peripheral_utils:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/nimble/common/nimble_peripheral_utils
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/nimble/common/nimble_peripheral_utils)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(ble_multi_adv)
|
project(ble_multi_adv)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
nimble_peripheral_utils:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/nimble/common/nimble_peripheral_utils
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/nimble/common/nimble_central_utils)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(blecent)
|
project(blecent)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
nimble_central_utils:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/nimble/common/nimble_central_utils
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/nimble/common/nimble_peripheral_utils)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(bleprph)
|
project(bleprph)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
nimble_peripheral_utils:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/nimble/common/nimble_peripheral_utils
|
@ -1,7 +1,6 @@
|
|||||||
# The following lines of boilerplate have to be in your project's
|
# The following lines of boilerplate have to be in your project's
|
||||||
# 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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/nimble/common/nimble_peripheral_utils)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(ble_periodic_adv)
|
project(ble_periodic_adv)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
nimble_peripheral_utils:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/nimble/common/nimble_peripheral_utils
|
@ -1,6 +1,5 @@
|
|||||||
# The following lines of boilerplate have to be in your project's
|
# The following lines of boilerplate have to be in your project's
|
||||||
# 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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/nimble/common/nimble_central_utils)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(ble_periodic_sync)
|
project(ble_periodic_sync)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
nimble_central_utils:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/nimble/common/nimble_central_utils
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/nimble/common/nimble_central_utils)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(phy_cent)
|
project(phy_cent)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
nimble_central_utils:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/nimble/common/nimble_central_utils
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/nimble/common/nimble_peripheral_utils)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(phy_prph)
|
project(phy_prph)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
nimble_peripheral_utils:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/nimble/common/nimble_peripheral_utils
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/nimble/common/nimble_central_utils)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(proximity_sensor_cent)
|
project(proximity_sensor_cent)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
nimble_central_utils:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/nimble/common/nimble_central_utils
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/nimble/common/nimble_central_utils)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(spp_client)
|
project(spp_client)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
nimble_central_utils:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/nimble/common/nimble_central_utils
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/nimble/common/nimble_peripheral_utils)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(spp_server)
|
project(spp_server)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
nimble_peripheral_utils:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/nimble/common/nimble_peripheral_utils
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/nimble/common/nimble_central_utils)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(blecent)
|
project(blecent)
|
||||||
|
3
examples/bluetooth/nimble/blecent/main/idf_component.yml
Normal file
3
examples/bluetooth/nimble/blecent/main/idf_component.yml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
nimble_central_utils:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/nimble/common/nimble_central_utils
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/nimble/common/nimble_peripheral_utils)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(bleprph)
|
project(bleprph)
|
||||||
|
3
examples/bluetooth/nimble/bleprph/main/idf_component.yml
Normal file
3
examples/bluetooth/nimble/bleprph/main/idf_component.yml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
nimble_peripheral_utils:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/nimble/common/nimble_peripheral_utils
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/nimble/common/nimble_peripheral_utils)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(power_save)
|
project(power_save)
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
nimble_peripheral_utils:
|
||||||
|
path: ${IDF_PATH}/examples/bluetooth/nimble/common/nimble_peripheral_utils
|
@ -7,9 +7,11 @@ It could be used to route lwip traffic to host side network, typically when work
|
|||||||
|
|
||||||
### Usage of the API
|
### Usage of the API
|
||||||
|
|
||||||
1) Add the path to this component to the `EXTRA_COMPONENT_DIRS` in your project makefile
|
1) Add the path to this component to as a dependency to the `main` component of your project using the following idf_component.yml file:
|
||||||
```cmake
|
```yaml
|
||||||
list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/examples/common_components/tapif_io")
|
dependencies:
|
||||||
|
tapif_io:
|
||||||
|
path: ${IDF_PATH}/examples/common_components/tapif_io
|
||||||
```
|
```
|
||||||
2) Include lwip and linux side of the configuration
|
2) Include lwip and linux side of the configuration
|
||||||
```cpp
|
```cpp
|
||||||
|
@ -2,9 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/system/console/advanced/components
|
|
||||||
$ENV{IDF_PATH}/examples/common_components/iperf
|
|
||||||
$ENV{IDF_PATH}/examples/ethernet/basic/components/ethernet_init)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(ethernet_iperf)
|
project(ethernet_iperf)
|
||||||
|
7
examples/ethernet/iperf/main/idf_component.yml
Normal file
7
examples/ethernet/iperf/main/idf_component.yml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
dependencies:
|
||||||
|
cmd_system:
|
||||||
|
path: ${IDF_PATH}/examples/system/console/advanced/components/cmd_system
|
||||||
|
ethernet_init:
|
||||||
|
path: ${IDF_PATH}/examples/ethernet/basic/components/ethernet_init
|
||||||
|
iperf:
|
||||||
|
path: ${IDF_PATH}/examples/common_components/iperf
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/ethernet/basic/components/ethernet_init)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(bridge)
|
project(bridge)
|
||||||
|
3
examples/network/bridge/main/idf_component.yml
Normal file
3
examples/network/bridge/main/idf_component.yml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
ethernet_init:
|
||||||
|
path: ${IDF_PATH}/examples/ethernet/basic/components/ethernet_init
|
@ -1,6 +1,4 @@
|
|||||||
cmake_minimum_required(VERSION 3.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/ethernet/basic/components/ethernet_init)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(eth2ap)
|
project(eth2ap)
|
||||||
|
3
examples/network/eth2ap/main/idf_component.yml
Normal file
3
examples/network/eth2ap/main/idf_component.yml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
ethernet_init:
|
||||||
|
path: ${IDF_PATH}/examples/ethernet/basic/components/ethernet_init
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/ethernet/basic/components/ethernet_init)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(simple_sniffer)
|
project(simple_sniffer)
|
||||||
|
@ -1,2 +1,4 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
pcap: "^1.0.0"
|
pcap: "^1.0.0"
|
||||||
|
ethernet_init:
|
||||||
|
path: ${IDF_PATH}/examples/ethernet/basic/components/ethernet_init
|
||||||
|
@ -2,9 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
# This example needs a DNS server: let's use the simple DNS server implementation from captive portal example
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/protocols/http_server/captive_portal/components/dns_server
|
|
||||||
$ENV{IDF_PATH}/examples/ethernet/basic/components/ethernet_init)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(sta_to_eth)
|
project(sta_to_eth)
|
||||||
|
@ -5,5 +5,9 @@ dependencies:
|
|||||||
rules:
|
rules:
|
||||||
- if: "idf_version >=4.4"
|
- if: "idf_version >=4.4"
|
||||||
- if: "target in [esp32s2, esp32s3]"
|
- if: "target in [esp32s2, esp32s3]"
|
||||||
|
dns_server:
|
||||||
|
path: ${IDF_PATH}/examples/protocols/http_server/captive_portal/components/dns_server
|
||||||
|
ethernet_init:
|
||||||
|
path: ${IDF_PATH}/examples/ethernet/basic/components/ethernet_init
|
||||||
|
|
||||||
idf: "^5.0"
|
idf: "^5.0"
|
||||||
|
@ -3,8 +3,6 @@
|
|||||||
# The following five lines of boilerplate have to be in your project's
|
# The following five lines of boilerplate have to be in your project's
|
||||||
# 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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/ethernet/basic/components/ethernet_init)
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
|
|
||||||
project(vlan_support)
|
project(vlan_support)
|
||||||
|
3
examples/network/vlan_support/main/idf_component.yml
Normal file
3
examples/network/vlan_support/main/idf_component.yml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
dependencies:
|
||||||
|
ethernet_init:
|
||||||
|
path: ${IDF_PATH}/examples/ethernet/basic/components/ethernet_init
|
@ -2,10 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
# (Not part of the boilerplate)
|
|
||||||
# This example uses an extra component for common functions such as Wi-Fi and Ethernet connection.
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/common_components/protocol_examples_common
|
|
||||||
$ENV{IDF_PATH}/examples/common_components/iperf)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(esp_ot_br)
|
project(esp_ot_br)
|
||||||
|
@ -6,3 +6,7 @@ dependencies:
|
|||||||
## Required IDF version
|
## Required IDF version
|
||||||
idf:
|
idf:
|
||||||
version: ">=5.0"
|
version: ">=5.0"
|
||||||
|
protocol_examples_common:
|
||||||
|
path: ${IDF_PATH}/examples/common_components/protocol_examples_common
|
||||||
|
iperf:
|
||||||
|
path: ${IDF_PATH}/examples/common_components/iperf
|
||||||
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/common_components/iperf)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(esp_ot_cli)
|
project(esp_ot_cli)
|
||||||
|
@ -4,3 +4,5 @@ dependencies:
|
|||||||
version: "~0.4.0"
|
version: "~0.4.0"
|
||||||
idf:
|
idf:
|
||||||
version: ">=4.1.0"
|
version: ">=4.1.0"
|
||||||
|
iperf:
|
||||||
|
path: ${IDF_PATH}/examples/common_components/iperf
|
||||||
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/system/console/advanced/components)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(i2c_tools)
|
project(i2c_tools)
|
||||||
|
@ -0,0 +1,7 @@
|
|||||||
|
dependencies:
|
||||||
|
cmd_system:
|
||||||
|
path: ${IDF_PATH}/examples/system/console/advanced/components/cmd_system
|
||||||
|
cmd_nvs:
|
||||||
|
path: ${IDF_PATH}/examples/system/console/advanced/components/cmd_nvs
|
||||||
|
cmd_wifi:
|
||||||
|
path: ${IDF_PATH}/examples/system/console/advanced/components/cmd_wifi
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/common_components/protocol_examples_common)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(usb-uvc)
|
project(usb-uvc)
|
||||||
|
@ -5,3 +5,5 @@ dependencies:
|
|||||||
mdns:
|
mdns:
|
||||||
rules:
|
rules:
|
||||||
- if: "idf_version >= 5.0"
|
- if: "idf_version >= 5.0"
|
||||||
|
protocol_examples_common:
|
||||||
|
path: ${IDF_PATH}/examples/common_components/protocol_examples_common
|
||||||
|
@ -2,7 +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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/system/console/advanced/components)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(cert_test)
|
project(cert_test)
|
||||||
|
7
examples/phy/cert_test/main/idf_component.yml
Normal file
7
examples/phy/cert_test/main/idf_component.yml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
dependencies:
|
||||||
|
cmd_system:
|
||||||
|
path: ${IDF_PATH}/examples/system/console/advanced/components/cmd_system
|
||||||
|
cmd_nvs:
|
||||||
|
path: ${IDF_PATH}/examples/system/console/advanced/components/cmd_nvs
|
||||||
|
cmd_wifi:
|
||||||
|
path: ${IDF_PATH}/examples/system/console/advanced/components/cmd_wifi
|
@ -2,10 +2,7 @@
|
|||||||
# 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.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/common_components/protocol_examples_common)
|
|
||||||
|
|
||||||
if(${IDF_TARGET} STREQUAL "linux")
|
if(${IDF_TARGET} STREQUAL "linux")
|
||||||
list(APPEND EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/protocols/linux_stubs/esp_stubs)
|
|
||||||
set(COMPONENTS main)
|
set(COMPONENTS main)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
@ -0,0 +1,7 @@
|
|||||||
|
dependencies:
|
||||||
|
protocol_examples_common:
|
||||||
|
path: ${IDF_PATH}/examples/common_components/protocol_examples_common
|
||||||
|
esp_stubs:
|
||||||
|
path: ${IDF_PATH}/examples/protocols/linux_stubs/esp_stubs
|
||||||
|
rules:
|
||||||
|
- if: "target in [linux]"
|
@ -2,9 +2,6 @@
|
|||||||
# in this exact order for cmake to work correctly
|
# in this exact order for cmake to work correctly
|
||||||
cmake_minimum_required(VERSION 3.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
# (Not part of the boilerplate)
|
|
||||||
# This example uses an extra component for common functions such as Wi-Fi and Ethernet connection.
|
|
||||||
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/common_components/protocol_examples_common)
|
|
||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
project(esp_local_ctrl)
|
project(esp_local_ctrl)
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user