Skip to content

Commit 35a4fdc

Browse files
committed
fix
1 parent e4df914 commit 35a4fdc

File tree

2 files changed

+59
-14
lines changed

2 files changed

+59
-14
lines changed

Diff for: idf_component_examples/esp_matter_light/ci.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
{
2-
"targets": {
3-
"esp32s2": false
4-
},
52
"requires": [
63
"CONFIG_SOC_WIFI_SUPPORTED=y",
7-
"CONFIG_ESP_MATTER_ENABLE_DATA_MODEL=y"
4+
"CONFIG_ESP_MATTER_ENABLE_DATA_MODEL=y",
5+
"CONFIG_MBEDTLS_HKDF_C=y"
86
]
97
}
+57-10
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,62 @@
1-
#
2-
# Arduino ESP32
3-
#
1+
# Arduino Settings
2+
CONFIG_FREERTOS_HZ=1000
43
CONFIG_AUTOSTART_ARDUINO=y
5-
# end of Arduino ESP32
64

7-
#
8-
# FREERTOS
9-
#
10-
CONFIG_FREERTOS_HZ=1000
11-
# end of FREERTOS
12-
# end of Component config
5+
# Log Levels
6+
# Boot Messages - Log level
7+
CONFIG_BOOTLOADER_LOG_LEVEL_ERROR=y
8+
# Arduino Log Level
9+
CONFIG_ARDUHAL_LOG_DEFAULT_LEVEL_INFO=y
10+
# IDF Log Level
11+
CONFIG_LOG_DEFAULT_LEVEL_ERROR=y
12+
13+
# Default to 921600 baud when flashing and monitoring device
14+
CONFIG_ESPTOOLPY_BAUD_921600B=y
15+
CONFIG_ESPTOOLPY_BAUD=921600
16+
CONFIG_ESPTOOLPY_COMPRESSED=y
17+
CONFIG_ESPTOOLPY_MONITOR_BAUD_115200B=y
18+
CONFIG_ESPTOOLPY_MONITOR_BAUD=115200
19+
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
20+
21+
#enable BT
22+
CONFIG_BT_ENABLED=y
23+
CONFIG_BT_NIMBLE_ENABLED=y
24+
25+
#disable BT connection reattempt
26+
CONFIG_BT_NIMBLE_ENABLE_CONN_REATTEMPT=n
27+
28+
#enable lwip ipv6 autoconfig
29+
CONFIG_LWIP_IPV6_AUTOCONFIG=y
30+
31+
# Use a custom partition table
32+
CONFIG_PARTITION_TABLE_CUSTOM=y
33+
CONFIG_PARTITION_TABLE_FILENAME="partitions.csv"
34+
CONFIG_PARTITION_TABLE_OFFSET=0xC000
35+
36+
# Disable chip shell
37+
CONFIG_ENABLE_CHIP_SHELL=n
38+
39+
# Enable OTA Requester
40+
CONFIG_ENABLE_OTA_REQUESTOR=n
41+
42+
#enable lwIP route hooks
43+
CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT=y
44+
CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT=y
45+
46+
# disable softap by default
47+
CONFIG_ESP_WIFI_SOFTAP_SUPPORT=n
48+
CONFIG_ENABLE_WIFI_STATION=y
49+
CONFIG_ENABLE_WIFI_AP=n
50+
51+
# Disable DS Peripheral
52+
CONFIG_ESP_SECURE_CERT_DS_PERIPHERAL=n
53+
54+
# Use compact attribute storage mode
55+
CONFIG_ESP_MATTER_NVS_USE_COMPACT_ATTR_STORAGE=y
1356

1457
# Enable HKDF in mbedtls
1558
CONFIG_MBEDTLS_HKDF_C=y
59+
60+
# Increase LwIP IPv6 address number to 6 (MAX_FABRIC + 1)
61+
# unique local addresses for fabrics(MAX_FABRIC), a link local address(1)
62+
CONFIG_LWIP_IPV6_NUM_ADDRESSES=6

0 commit comments

Comments
 (0)