2019-01-07 02:16:47 -05:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
|
|
|
choice BLE_MESH_EXAMPLE_BOARD
|
|
|
|
prompt "Board selection for BLE Mesh"
|
2020-12-25 03:47:39 -05:00
|
|
|
default BLE_MESH_ESP_WROOM_32 if IDF_TARGET_ESP32
|
|
|
|
default BLE_MESH_ESP32C3_DEV if IDF_TARGET_ESP32C3
|
2021-05-25 03:04:03 -04:00
|
|
|
default BLE_MESH_ESP32S3_DEV if IDF_TARGET_ESP32S3
|
2023-01-04 23:11:34 -05:00
|
|
|
default BLE_MESH_ESP32C6_DEV if IDF_TARGET_ESP32C6
|
2019-01-07 02:16:47 -05:00
|
|
|
help
|
|
|
|
Select this option to choose the board for BLE Mesh. The default is ESP32-WROOM-32
|
|
|
|
|
|
|
|
config BLE_MESH_ESP_WROOM_32
|
|
|
|
bool "ESP32-WROOM-32"
|
2020-12-25 03:47:39 -05:00
|
|
|
depends on IDF_TARGET_ESP32
|
2019-01-07 02:16:47 -05:00
|
|
|
|
|
|
|
config BLE_MESH_ESP_WROVER
|
|
|
|
bool "ESP32-WROVER"
|
2020-12-25 03:47:39 -05:00
|
|
|
depends on IDF_TARGET_ESP32
|
|
|
|
|
|
|
|
config BLE_MESH_ESP32C3_DEV
|
|
|
|
bool "ESP32C3-DevKitC"
|
|
|
|
depends on IDF_TARGET_ESP32C3
|
|
|
|
|
2021-05-25 03:04:03 -04:00
|
|
|
config BLE_MESH_ESP32S3_DEV
|
|
|
|
bool "ESP32S3-DevKitC"
|
|
|
|
depends on IDF_TARGET_ESP32S3
|
|
|
|
|
2023-01-04 23:11:34 -05:00
|
|
|
config BLE_MESH_ESP32C6_DEV
|
|
|
|
bool "ESP32C6-DevKitC"
|
|
|
|
depends on IDF_TARGET_ESP32C6
|
|
|
|
|
2023-03-13 07:05:45 -04:00
|
|
|
config BLE_MESH_ESP32H2_DEV
|
|
|
|
bool "ESP32C6-DevKitC"
|
|
|
|
depends on IDF_TARGET_ESP32H2
|
|
|
|
|
2019-01-07 02:16:47 -05:00
|
|
|
endchoice
|
|
|
|
|
|
|
|
endmenu
|