Skip to content

Commit ff3b28b

Browse files
committed
Add support of ESP32C6 to OTBR example
1 parent 466b932 commit ff3b28b

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ out/
1111
_build/
1212
tools/chip-tool/
1313
.zap/
14+
.idea
15+
cmake-build-*

examples/thread_border_router/CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ endif(NOT DEFINED ENV{ESP_MATTER_PATH})
99
if(NOT DEFINED ENV{ESP_MATTER_DEVICE_PATH})
1010
if("${IDF_TARGET}" STREQUAL "esp32s3")
1111
set(ENV{ESP_MATTER_DEVICE_PATH} $ENV{ESP_MATTER_PATH}/device_hal/device/esp32s3_devkit_c)
12+
elseif ("${IDF_TARGET}" STREQUAL "esp32c6")
13+
set(ENV{ESP_MATTER_DEVICE_PATH} $ENV{ESP_MATTER_PATH}/device_hal/device/esp32c6_devkit_c)
1214
else()
1315
message(FATAL_ERROR "Unsupported IDF_TARGET")
1416
endif()

examples/thread_border_router/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ See the [docs](https://docs.espressif.com/projects/esp-matter/en/latest/esp32/de
99

1010
### 1.1 Hardware Platform
1111

12-
The [ESP Thread Border Router board](https://github.com/espressif/esp-thread-br?tab=readme-ov-file#esp-thread-border-router-board) which provides an integrated module of an ESP32-S3 and an ESP32-H2 is required for this example.
12+
The [ESP Thread Border Router board](https://github.com/espressif/esp-thread-br?tab=readme-ov-file#esp-thread-border-router-board) which provides an integrated module of an ESP32-S3 and an ESP32-H2 is required for this example. Alternatively, the ESP32-S3 and ESP32-H2 might be replaced by the ESP32-C6.
1313

1414
### 1.2 Firmware for RCP
1515

0 commit comments

Comments
 (0)