Skip to content

Commit 19512d2

Browse files
committed
Merge branch 'all-devices/c6' into 'main'
Add c6 support on all-device-types-app See merge request app-frameworks/esp-matter!748
2 parents 1e5279b + 2a6b7ff commit 19512d2

File tree

4 files changed

+58
-1
lines changed

4 files changed

+58
-1
lines changed

examples/all_device_types_app/CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ if(NOT DEFINED ENV{ESP_MATTER_DEVICE_PATH})
1515
set(ENV{ESP_MATTER_DEVICE_PATH} $ENV{ESP_MATTER_PATH}/device_hal/device/esp32h2_devkit_c)
1616
elseif("${IDF_TARGET}" STREQUAL "esp32c2")
1717
set(ENV{ESP_MATTER_DEVICE_PATH} $ENV{ESP_MATTER_PATH}/device_hal/device/esp32c2_devkit_m)
18+
elseif("${IDF_TARGET}" STREQUAL "esp32c6")
19+
set(ENV{ESP_MATTER_DEVICE_PATH} $ENV{ESP_MATTER_PATH}/device_hal/device/esp32c6_devkit_c)
1820
else()
1921
message(FATAL_ERROR "Unsupported IDF_TARGET")
2022
endif()

examples/all_device_types_app/main/app_main.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
#include <esp_matter.h>
1414
#include <esp_matter_console.h>
15-
#include <esp_matter_ota.h>
1615

1716
#include <common_macros.h>
1817
#include <app_priv.h>

examples/all_device_types_app/main/esp_matter_console_helpers.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
#include "esp_vfs_fat.h"
1717
#include "hal/uart_types.h"
1818
#include "driver/uart.h"
19+
#if CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG
20+
#include "esp_vfs_usb_serial_jtag.h"
21+
#include "driver/usb_serial_jtag.h"
22+
#endif // CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG
1923
#include <helpers.h>
2024
#include <device_types.h>
2125
#include <string.h>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
CONFIG_IDF_TARGET="esp32c6"
2+
3+
# libsodium
4+
CONFIG_LIBSODIUM_USE_MBEDTLS_SHA=y
5+
6+
# NIMBLE
7+
CONFIG_BT_ENABLED=y
8+
CONFIG_BT_NIMBLE_ENABLED=y
9+
CONFIG_BT_NIMBLE_EXT_ADV=n
10+
CONFIG_BT_NIMBLE_HCI_EVT_BUF_SIZE=70
11+
CONFIG_USE_BLE_ONLY_FOR_COMMISSIONING=y
12+
13+
# FreeRTOS should use legacy API
14+
CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY=y
15+
16+
# Disable lwip ipv6 autoconfig
17+
CONFIG_LWIP_IPV6_AUTOCONFIG=y
18+
19+
# Use a custom partition table
20+
CONFIG_PARTITION_TABLE_CUSTOM=y
21+
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv"
22+
23+
# Use minimal mDNS
24+
CONFIG_USE_MINIMAL_MDNS=y
25+
CONFIG_ENABLE_EXTENDED_DISCOVERY=y
26+
27+
# Enable OTA Requestor
28+
CONFIG_ENABLE_OTA_REQUESTOR=y
29+
30+
# Disable AP
31+
CONFIG_ENABLE_WIFI_STATION=y
32+
CONFIG_ENABLE_WIFI_AP=n
33+
34+
# Button
35+
CONFIG_BUTTON_PERIOD_TIME_MS=20
36+
CONFIG_BUTTON_LONG_PRESS_TIME_MS=5000
37+
38+
# Enable chip shell
39+
CONFIG_ENABLE_CHIP_SHELL=y
40+
41+
# ESP32-C6-DevKitM-1 Settings
42+
# Buttons
43+
CONFIG_BSP_BUTTONS_NUM=1
44+
CONFIG_BSP_BUTTON_1_TYPE_GPIO=y
45+
CONFIG_BSP_BUTTON_1_GPIO=9
46+
CONFIG_BSP_BUTTON_1_LEVEL=0
47+
# LEDs
48+
CONFIG_BSP_LEDS_NUM=1
49+
CONFIG_BSP_LED_TYPE_RGB=y
50+
CONFIG_BSP_LED_RGB_GPIO=8
51+
CONFIG_BSP_LED_RGB_BACKEND_RMT=y
52+

0 commit comments

Comments
 (0)