File tree Expand file tree Collapse file tree 3 files changed +7
-23
lines changed
config/nrfconnect/chip-module Expand file tree Collapse file tree 3 files changed +7
-23
lines changed Original file line number Diff line number Diff line change @@ -462,10 +462,10 @@ config CHIP_SYSTEM_PACKETBUFFER_POOL_SIZE
462
462
463
463
config CHIP_WIFI
464
464
bool "Enable nrfconnect Wi-Fi support"
465
- default y if SHIELD_NRF7002EK || BOARD_NRF7002DK_NRF5340_CPUAPP || SHIELD_NRF7002EB || BOARD_NRF7002DK_NRF5340_CPUAPP_NRF7001
466
465
select WIFI_NRF70
467
466
select WIFI
468
467
select WIFI_NM_WPA_SUPPLICANT
468
+ select NETWORKING
469
469
imply NORDIC_SECURITY_BACKEND
470
470
imply MBEDTLS_ENTROPY_C
471
471
imply MBEDTLS_PSA_CRYPTO_C
@@ -480,6 +480,7 @@ config CHIP_WIFI
480
480
imply NET_IPV6_NBR_CACHE
481
481
imply NET_STATISTICS_IPV6
482
482
imply NET_STATISTICS_USER_API
483
+ imply NET_CONFIG_NEED_IPV6
483
484
484
485
config CHIP_IM_PRETTY_PRINT
485
486
bool "Enable detailed logging of Matter messages"
Original file line number Diff line number Diff line change @@ -244,19 +244,6 @@ config NFC_THREAD_CALLBACK
244
244
config CHIP_OTA_REQUESTOR
245
245
default y
246
246
247
- # All boards except nRF7002DK use QSPI NOR external flash
248
- config CHIP_QSPI_NOR
249
- default y if BOARD_NRF5340DK_NRF5340_CPUAPP || BOARD_NRF52840DK_NRF52840
250
-
251
- # nRF7002DK uses SPI NOR external flash
252
-
253
- if BOARD_NRF7002DK_NRF5340_CPUAPP || BOARD_NRF7002DK_NRF5340_CPUAPP_NRF7001 || BOARD_NRF54L15DK || BOARD_NRF54LM20DK
254
-
255
- config CHIP_SPI_NOR
256
- default y
257
-
258
- endif # BOARD_NRF7002DK_NRF5340_CPUAPP || BOARD_NRF7002DK_NRF5340_CPUAPP_NRF7001 || BOARD_NRF54L15DK || BOARD_NRF54LM20DK
259
-
260
247
config BOOT_IMAGE_ACCESS_HOOKS
261
248
default y if SOC_SERIES_NRF53X
262
249
@@ -275,7 +262,7 @@ config NRF_WIFI_FW_PATCH_DFU
275
262
# ==============================================================================
276
263
277
264
config NET_L2_OPENTHREAD
278
- default y if !WIFI_NRF70 && NETWORKING
265
+ default y if !CHIP_WIFI && NETWORKING
279
266
280
267
if NET_L2_OPENTHREAD
281
268
@@ -290,7 +277,7 @@ endif # NET_L2_OPENTHREAD
290
277
# ==============================================================================
291
278
292
279
config OPENTHREAD
293
- default y if !WIFI_NRF70
280
+ default y if !CHIP_WIFI
294
281
295
282
if OPENTHREAD
296
283
@@ -306,7 +293,7 @@ config OPENTHREAD_DEFAULT_TX_POWER
306
293
endif # OPENTHREAD
307
294
308
295
config CHIP_USE_ZEPHYR_NETWORKING
309
- default n if !CHIP_WIFI
296
+ default n
310
297
311
298
# ==============================================================================
312
299
# ICD configuration
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ if CHIP
21
21
22
22
config CHIP_QSPI_NOR
23
23
bool "Enable QSPI NOR feature set"
24
- imply NORDIC_QSPI_NOR
24
+ default y if NORDIC_QSPI_NOR
25
25
help
26
26
Enables QSPI NOR flash with a set of options for configuring pages and
27
27
buffer sizes.
@@ -35,9 +35,7 @@ endif # CHIP_QSPI_NOR
35
35
36
36
config CHIP_SPI_NOR
37
37
bool "Enable SPI NOR feature set"
38
- imply SPI
39
- imply SPI_NOR
40
- imply MULTITHREADING
38
+ default y if SPI_NOR
41
39
imply PM_OVERRIDE_EXTERNAL_DRIVER_CHECK
42
40
imply MCUMGR_GRP_IMG_ALLOW_ERASE_PENDING
43
41
help
@@ -130,8 +128,6 @@ endif
130
128
131
129
config CHIP_DFU_OVER_BT_SMP
132
130
bool "Enable DFU over Bluetooth LE SMP feature set"
133
- imply CHIP_QSPI_NOR if BOARD_NRF5340DK_NRF5340_CPUAPP || BOARD_NRF52840DK_NRF52840
134
- imply CHIP_SPI_NOR if BOARD_NRF7002DK_NRF5340_CPUAPP || BOARD_NRF7002DK_NRF5340_CPUAPP_NRF7001 || BOARD_NRF54L15DK || BOARD_NRF54LM20DK
135
131
imply BOOTLOADER_MCUBOOT
136
132
select MCUMGR
137
133
select MCUMGR_TRANSPORT_BT
You can’t perform that action at this time.
0 commit comments