Skip to content

feat(matter): removes CHIPOBLE to manage it case by case #303

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 21 commits into
base: release/v5.5
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
64c03fd
feat(matter): removes CHIPOBLE to manage it case by case
SuGlider Jun 24, 2025
ad99680
feat(matter): Update defconfig.esp32
SuGlider Jun 25, 2025
cab2b42
feat(matter): Update defconfig.esp32c3
SuGlider Jun 25, 2025
ab99173
feat(matter): Update defconfig.esp32s2
SuGlider Jun 25, 2025
0d1fe99
feat(matter): Update defconfig.esp32s3
SuGlider Jun 25, 2025
57d918e
feat(matter): Update defconfig.esp32c6
SuGlider Jun 25, 2025
69ad6e8
feat(matter): Update defconfig.esp32c5
SuGlider Jun 25, 2025
804e957
feat(matter): Update defconfig.esp32h2
SuGlider Jun 25, 2025
2e8d3be
feat(matter): enable Matter for H2 - Update idf_component.yml
SuGlider Jun 25, 2025
c411b80
feat(matter): disable Matter over WiFi - Update defconfig.esp32h2
SuGlider Jun 25, 2025
6b6ab42
fix(matter): disable matter over thread config setting
SuGlider Jun 25, 2025
87aefa5
fix(matter): disable matter over thread config setting
SuGlider Jun 25, 2025
3f14c1f
fix(matter): disable matter over thread config setting
SuGlider Jun 25, 2025
dfc54a5
fix(matter): openthread option
SuGlider Jun 25, 2025
77c7ff0
fix(matter): openthread option
SuGlider Jun 25, 2025
69a355c
fix(matter): openthread option
SuGlider Jun 25, 2025
8fcd509
Update defconfig.esp32c6
SuGlider Jun 25, 2025
5c15b9a
fix(matter): openthread option
SuGlider Jun 25, 2025
45d62bf
fix(matter): openthread option
SuGlider Jun 25, 2025
98e5e84
fix(matter): openthread option
SuGlider Jun 25, 2025
8ab2f8f
feat(matter): leave thread endpoint not defined
SuGlider Jun 25, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion configs/defconfig.common
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ CONFIG_I2S_ISR_IRAM_SAFE=y
# Matter Settings
#
# Disable Matter BLE
CONFIG_ENABLE_CHIPOBLE=n
CONFIG_USE_BLE_ONLY_FOR_COMMISSIONING=n
# ESP Insights
CONFIG_ENABLE_ESP_INSIGHTS_TRACE=n
Expand Down
3 changes: 3 additions & 0 deletions configs/defconfig.esp32
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,6 @@ CONFIG_TWAI_ERRATA_FIX_RX_FRAME_INVALID=y
CONFIG_TWAI_ERRATA_FIX_RX_FIFO_CORRUPT=y
CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK=y
CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=4096

# Matter settings:
CONFIG_ENABLE_CHIPOBLE=n
3 changes: 3 additions & 0 deletions configs/defconfig.esp32c3
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@ CONFIG_ESP_WIFI_SCAN_CACHE=y
CONFIG_ESP_WIFI_MBO_SUPPORT=y
CONFIG_ESP_WIFI_11R_SUPPORT=y
CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=4096

# Matter settings:
CONFIG_ENABLE_CHIPOBLE=y
8 changes: 6 additions & 2 deletions configs/defconfig.esp32c5
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,12 @@ CONFIG_OPENTHREAD_NETWORK_MASTERKEY="00112233445566778899aabbccddeeff"
CONFIG_OPENTHREAD_NETWORK_PSKC="104810e2315100afd6bc9215a6bfac53"
# end of OpenThread

# Matter shall use only WiFi
CONFIG_ENABLE_MATTER_OVER_THREAD=n
# Matter settings: WiFi and OpenThread + CHIPoBLE
CONFIG_ENABLE_CHIPOBLE=y
CONFIG_ENABLE_MATTER_OVER_THREAD=y
# Set endpoint id for Thread and Wi-Fi, depending on the secondary network interface endpoint id.
CONFIG_THREAD_NETWORK_ENDPOINT_ID=2
CONFIG_WIFI_NETWORK_ENDPOINT_ID=0

#
# Zigbee
Expand Down
8 changes: 6 additions & 2 deletions configs/defconfig.esp32c6
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,12 @@ CONFIG_OPENTHREAD_NETWORK_MASTERKEY="00112233445566778899aabbccddeeff"
CONFIG_OPENTHREAD_NETWORK_PSKC="104810e2315100afd6bc9215a6bfac53"
# end of OpenThread

# Matter shall use only WiFi
CONFIG_ENABLE_MATTER_OVER_THREAD=n
# Matter settings: WiFi and OpenThread + CHIPoBLE
CONFIG_ENABLE_CHIPOBLE=y
CONFIG_ENABLE_MATTER_OVER_THREAD=y
# Set endpoint id for Thread and Wi-Fi, depending on the secondary network interface endpoint id.
CONFIG_THREAD_NETWORK_ENDPOINT_ID=2
CONFIG_WIFI_NETWORK_ENDPOINT_ID=0

#
# Zigbee
Expand Down
7 changes: 7 additions & 0 deletions configs/defconfig.esp32h2
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ CONFIG_OPENTHREAD_NETWORK_MASTERKEY="00112233445566778899aabbccddeeff"
CONFIG_OPENTHREAD_NETWORK_PSKC="104810e2315100afd6bc9215a6bfac53"
# end of OpenThread

# Matter settings: OpenThread + CHIPoBLE
CONFIG_ENABLE_CHIPOBLE=y
CONFIG_ENABLE_MATTER_OVER_THREAD=y
# Disable Matter over WiFi
CONFIG_ENABLE_WIFI_AP=n
CONFIG_ENABLE_WIFI_STATION=n

#
# Zigbee
#
Expand Down
3 changes: 3 additions & 0 deletions configs/defconfig.esp32s2
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ CONFIG_ULP_COPROC_ENABLED=y
CONFIG_ULP_COPROC_TYPE_FSM=y
# CONFIG_ULP_COPROC_TYPE_RISCV=y
CONFIG_ULP_COPROC_RESERVE_MEM=512

# Matter settings:
CONFIG_ENABLE_CHIPOBLE=n
3 changes: 3 additions & 0 deletions configs/defconfig.esp32s3
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ CONFIG_ULP_COPROC_RESERVE_MEM=512
# RGB Display Optimizations
# CONFIG_LCD_RGB_ISR_IRAM_SAFE is not set
CONFIG_LCD_RGB_RESTART_IN_VSYNC=y

# Matter settings:
CONFIG_ENABLE_CHIPOBLE=y
2 changes: 1 addition & 1 deletion main/idf_component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ dependencies:
version: "1.4.1"
require: public
rules:
- if: "target not in [esp32c2, esp32h2, esp32p4]"
- if: "target not in [esp32c2, esp32p4]"