File tree Expand file tree Collapse file tree 11 files changed +58
-8
lines changed
doc/nrf/releases_and_maturity Expand file tree Collapse file tree 11 files changed +58
-8
lines changed Original file line number Diff line number Diff line change @@ -176,6 +176,13 @@ endchoice
176
176
177
177
endif # OPENTHREAD
178
178
179
+ if WIFI_NRF70
180
+
181
+ config CHIP_WIFI
182
+ default y
183
+
184
+ endif # WIFI_NRF70
185
+
179
186
# Dummy Kconfig just to select experimental for some of the configurations.
180
187
config BRIDGE_EXPERIMENTAL
181
188
bool
Original file line number Diff line number Diff line change @@ -32,12 +32,15 @@ config CHIP_ENABLE_ICD_SUPPORT
32
32
33
33
endif # OPENTHREAD
34
34
35
- if CHIP_WIFI
35
+ if WIFI_NRF70
36
+
37
+ config CHIP_WIFI
38
+ default y
36
39
37
40
config NRF_WIFI_LOW_POWER
38
41
default y
39
42
40
- endif # CHIP_WIFI
43
+ endif # WIFI_NRF70
41
44
42
45
source "$(ZEPHYR_CONNECTEDHOMEIP_MODULE_DIR)/config/nrfconnect/chip-module/Kconfig.features"
43
46
source "$(ZEPHYR_CONNECTEDHOMEIP_MODULE_DIR)/config/nrfconnect/chip-module/Kconfig.defaults"
Original file line number Diff line number Diff line change @@ -79,6 +79,11 @@ Matter
79
79
#. Set the :kconfig:option: `SB_CONFIG_DFU_MULTI_IMAGE_PACKAGE_WIFI_FW_PATCH ` Kconfig option to ``n ``.
80
80
#. Set the :kconfig:option: `SB_CONFIG_MCUBOOT_UPDATEABLE_IMAGES ` Kconfig option to ``2 ``.
81
81
82
+ * All Matter over Wi-Fi samples and applications now set the :kconfig:option: `CHIP_WIFI ` if the :kconfig:option: `WIFI_NRF70 ` Kconfig option is enabled.
83
+ Previously, the :kconfig:option: `CHIP_WIFI ` was set if nRF7002 DK or nRF70 EK was used wchich caused problems when building the application with custom boards.
84
+
85
+ To build your custom board with Wi-Fi support, set the :kconfig:option: `CHIP_WIFI ` Kconfig option to ``y ``.
86
+
82
87
Libraries
83
88
=========
84
89
Original file line number Diff line number Diff line change @@ -184,7 +184,8 @@ Matter
184
184
Matter fork
185
185
+++++++++++
186
186
187
- |no_changes_yet_note |
187
+ * Removed dependencies to Nordic DK-specific configurations in Matter configurations.
188
+ See the :ref: `migration guide <migration_3.2_required >` for more information.
188
189
189
190
nRF IEEE 802.15.4 radio driver
190
191
------------------------------
Original file line number Diff line number Diff line change @@ -18,6 +18,13 @@ endchoice
18
18
19
19
endif # OPENTHREAD
20
20
21
+ if WIFI_NRF70
22
+
23
+ config CHIP_WIFI
24
+ default y
25
+
26
+ endif # WIFI_NRF70
27
+
21
28
source "$(ZEPHYR_CONNECTEDHOMEIP_MODULE_DIR)/config/nrfconnect/chip-module/Kconfig.features"
22
29
source "$(ZEPHYR_CONNECTEDHOMEIP_MODULE_DIR)/config/nrfconnect/chip-module/Kconfig.defaults"
23
30
source "$(ZEPHYR_NRF_MODULE_DIR)/samples/matter/common/src/Kconfig"
Original file line number Diff line number Diff line change @@ -33,12 +33,15 @@ config OPENTHREAD_DEFAULT_TX_POWER
33
33
34
34
endif # OPENTHREAD
35
35
36
- if CHIP_WIFI
36
+ if WIFI_NRF70
37
+
38
+ config CHIP_WIFI
39
+ default y
37
40
38
41
config NRF_WIFI_LOW_POWER
39
42
default y
40
43
41
- endif # CHIP_WIFI
44
+ endif # WIFI_NRF70
42
45
43
46
# Enable Read Client functionality for all build configurations.
44
47
config CHIP_ENABLE_READ_CLIENT
Original file line number Diff line number Diff line change @@ -130,12 +130,15 @@ config OPENTHREAD_DEFAULT_TX_POWER
130
130
131
131
endif # OPENTHREAD
132
132
133
- if CHIP_WIFI
133
+ if WIFI_NRF70
134
+
135
+ config CHIP_WIFI
136
+ default y
134
137
135
138
config NRF_WIFI_LOW_POWER
136
139
default y
137
140
138
- endif # CHIP_WIFI
141
+ endif # WIFI_NRF70
139
142
140
143
config NCS_SAMPLE_MATTER_PERSISTENT_STORAGE
141
144
default y
Original file line number Diff line number Diff line change @@ -18,6 +18,13 @@ endchoice
18
18
19
19
endif # OPENTHREAD
20
20
21
+ if WIFI_NRF70
22
+
23
+ config CHIP_WIFI
24
+ default y
25
+
26
+ endif # WIFI_NRF70
27
+
21
28
source "$(ZEPHYR_CONNECTEDHOMEIP_MODULE_DIR)/config/nrfconnect/chip-module/Kconfig.features"
22
29
source "$(ZEPHYR_CONNECTEDHOMEIP_MODULE_DIR)/config/nrfconnect/chip-module/Kconfig.defaults"
23
30
source "$(ZEPHYR_NRF_MODULE_DIR)/samples/matter/common/src/Kconfig"
Original file line number Diff line number Diff line change @@ -18,6 +18,13 @@ endchoice
18
18
19
19
endif # OPENTHREAD
20
20
21
+ if WIFI_NRF70
22
+
23
+ config CHIP_WIFI
24
+ default y
25
+
26
+ endif # WIFI_NRF70
27
+
21
28
source "$(ZEPHYR_CONNECTEDHOMEIP_MODULE_DIR)/config/nrfconnect/chip-module/Kconfig.features"
22
29
source "$(ZEPHYR_CONNECTEDHOMEIP_MODULE_DIR)/config/nrfconnect/chip-module/Kconfig.defaults"
23
30
source "$(ZEPHYR_NRF_MODULE_DIR)/samples/matter/common/src/Kconfig"
Original file line number Diff line number Diff line change @@ -42,6 +42,13 @@ endchoice
42
42
43
43
endif # OPENTHREAD
44
44
45
+ if WIFI_NRF70
46
+
47
+ config CHIP_WIFI
48
+ default y
49
+
50
+ endif # WIFI_NRF70
51
+
45
52
source "$(ZEPHYR_CONNECTEDHOMEIP_MODULE_DIR)/config/nrfconnect/chip-module/Kconfig.features"
46
53
source "$(ZEPHYR_CONNECTEDHOMEIP_MODULE_DIR)/config/nrfconnect/chip-module/Kconfig.defaults"
47
54
source "$(ZEPHYR_NRF_MODULE_DIR)/samples/matter/common/src/Kconfig"
You can’t perform that action at this time.
0 commit comments