File tree 13 files changed +26
-26
lines changed
pump-controller-app/nrfconnect/main
window-app/nrfconnect/main
13 files changed +26
-26
lines changed Original file line number Diff line number Diff line change @@ -140,12 +140,12 @@ matter_add_gn_arg_bool ("chip_progress_logging" CONFIG_MATTER_
140
140
matter_add_gn_arg_bool ("chip_detail_logging" CONFIG_MATTER_LOG_LEVEL GREATER_EQUAL 4)
141
141
matter_add_gn_arg_bool ("chip_automation_logging" FALSE )
142
142
matter_add_gn_arg_bool ("chip_malloc_sys_heap" CONFIG_CHIP_MALLOC_SYS_HEAP)
143
- matter_add_gn_arg_bool ("chip_enable_wifi" CONFIG_WIFI_NRF700X )
143
+ matter_add_gn_arg_bool ("chip_enable_wifi" CONFIG_WIFI_NRF70 )
144
144
matter_add_gn_arg_bool ("chip_system_config_provide_statistics" CONFIG_CHIP_STATISTICS)
145
145
matter_add_gn_arg_bool ("chip_enable_icd_server" CONFIG_CHIP_ENABLE_ICD_SUPPORT)
146
146
matter_add_gn_arg_bool ("chip_enable_factory_data" CONFIG_CHIP_FACTORY_DATA)
147
147
matter_add_gn_arg_bool ("chip_enable_read_client" CONFIG_CHIP_ENABLE_READ_CLIENT)
148
- matter_add_gn_arg_bool ("chip_mdns_minimal" CONFIG_WIFI_NRF700X )
148
+ matter_add_gn_arg_bool ("chip_mdns_minimal" CONFIG_WIFI_NRF70 )
149
149
matter_add_gn_arg_bool ("chip_mdns_platform" CONFIG_NET_L2_OPENTHREAD)
150
150
151
151
if (CONFIG_CHIP_ENABLE_ICD_SUPPORT)
@@ -164,7 +164,7 @@ if (CONFIG_CHIP_ROTATING_DEVICE_ID)
164
164
matter_add_gn_arg_bool("chip_enable_additional_data_advertising" TRUE )
165
165
endif ()
166
166
167
- if (CONFIG_WIFI_NRF700X )
167
+ if (CONFIG_WIFI_NRF70 )
168
168
matter_add_gn_arg_string("chip_mdns" "minimal" )
169
169
elseif (CONFIG_NET_L2_OPENTHREAD)
170
170
matter_add_gn_arg_string("chip_mdns" "platform" )
Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ config NRF_WIFI_FW_PATCH_DFU
227
227
# ==============================================================================
228
228
229
229
config NET_L2_OPENTHREAD
230
- default y if !WIFI_NRF700X
230
+ default y if !WIFI_NRF70
231
231
232
232
if NET_L2_OPENTHREAD
233
233
@@ -260,23 +260,23 @@ endchoice
260
260
config WPA_SUPP_NO_DEBUG
261
261
default y
262
262
263
- config NRF700X_LOG_VERBOSE
263
+ config NRF70_LOG_VERBOSE
264
264
default n
265
265
266
- choice WIFI_NRF700X_LOG_LEVEL_CHOICE
267
- default WIFI_NRF700X_LOG_LEVEL_OFF
266
+ choice WIFI_NRF70_LOG_LEVEL_CHOICE
267
+ default WIFI_NRF70_LOG_LEVEL_OFF
268
268
endchoice
269
269
270
270
config NRF_WIFI_LOW_POWER
271
271
default n
272
272
273
- config NRF700X_RX_NUM_BUFS
273
+ config NRF70_RX_NUM_BUFS
274
274
default 16
275
275
276
- config NRF700X_MAX_TX_TOKENS
276
+ config NRF70_MAX_TX_TOKENS
277
277
default 10
278
278
279
- config NRF700X_MAX_TX_AGGREGATION
279
+ config NRF70_MAX_TX_AGGREGATION
280
280
default 1
281
281
282
282
# it saves 25kB of FLASH
Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ if CHIP
22
22
config CHIP_WIFI
23
23
bool "Enable nrfconnect Wi-Fi support"
24
24
default y if SHIELD_NRF7002EK || BOARD_NRF7002DK_NRF5340_CPUAPP || SHIELD_NRF7002EB || BOARD_NRF7002DK_NRF7001_NRF5340_CPUAPP
25
- select WIFI_NRF700X
25
+ select WIFI_NRF70
26
26
select WIFI
27
- select WPA_SUPP
27
+ select WIFI_NM_WPA_SUPPLICANT
28
28
imply NORDIC_SECURITY_BACKEND
29
29
imply MBEDTLS_ENTROPY_C
30
30
imply MBEDTLS_PSA_CRYPTO_C
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ config CHIP_WIFI
24
24
default y
25
25
select WIFI
26
26
select WIFI_NXP
27
- select WPA_SUPP
27
+ select WIFI_NM_WPA_SUPPLICANT
28
28
select WPA_SUPP_AP
29
29
select WPA_SUPP_WPS
30
30
select WPA_SUPP_WPA3
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ int main()
109
109
ChipLogError (AppServer, " ConnectivityMgr().SetThreadDeviceType() failed" );
110
110
return 1 ;
111
111
}
112
- #elif !defined(CONFIG_WIFI_NRF700X )
112
+ #elif !defined(CONFIG_WIFI_NRF70 )
113
113
return CHIP_ERROR_INTERNAL;
114
114
#endif
115
115
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ CHIP_ERROR AppTask::Init()
137
137
LOG_ERR (" ConnectivityMgr().SetThreadDeviceType() failed" );
138
138
return err;
139
139
}
140
- #elif !defined(CONFIG_WIFI_NRF700X )
140
+ #elif !defined(CONFIG_WIFI_NRF70 )
141
141
return CHIP_ERROR_INTERNAL;
142
142
#endif
143
143
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ CHIP_ERROR AppTask::Init()
125
125
LOG_ERR (" ConnectivityMgr().SetThreadDeviceType() failed" );
126
126
return err;
127
127
}
128
- #elif !defined(CONFIG_WIFI_NRF700X )
128
+ #elif !defined(CONFIG_WIFI_NRF70 )
129
129
return CHIP_ERROR_INTERNAL;
130
130
#endif
131
131
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ CHIP_ERROR AppTask::Init()
142
142
LOG_ERR (" ConnectivityMgr().SetThreadDeviceType() failed" );
143
143
return err;
144
144
}
145
- #elif !defined(CONFIG_WIFI_NRF700X )
145
+ #elif !defined(CONFIG_WIFI_NRF70 )
146
146
return CHIP_ERROR_INTERNAL;
147
147
#endif
148
148
Original file line number Diff line number Diff line change 64
64
#define CHIP_DEVICE_CONFIG_ENABLE_THREAD 0
65
65
#endif
66
66
67
- #ifdef CONFIG_WIFI_NRF700X
68
- #define CHIP_DEVICE_CONFIG_ENABLE_WIFI CONFIG_WIFI_NRF700X
67
+ #ifdef CONFIG_WIFI_NRF70
68
+ #define CHIP_DEVICE_CONFIG_ENABLE_WIFI CONFIG_WIFI_NRF70
69
69
#define CHIP_DEVICE_CONFIG_ENABLE_WIFI_STATION 1
70
70
#define CHIP_DEVICE_CONFIG_ENABLE_WIFI_AP 0
71
71
#else
Original file line number Diff line number Diff line change 23
23
24
24
#include " DiagnosticDataProviderImplNrf.h"
25
25
26
- #ifdef CONFIG_WIFI_NRF700X
26
+ #ifdef CONFIG_WIFI_NRF70
27
27
#include < platform/nrfconnect/wifi/WiFiManager.h>
28
28
#endif
29
29
@@ -41,7 +41,7 @@ DiagnosticDataProviderImplNrf & DiagnosticDataProviderImplNrf::GetDefaultInstanc
41
41
return sInstance ;
42
42
}
43
43
44
- #ifdef CONFIG_WIFI_NRF700X
44
+ #ifdef CONFIG_WIFI_NRF70
45
45
CHIP_ERROR DiagnosticDataProviderImplNrf::GetWiFiBssId (MutableByteSpan & value)
46
46
{
47
47
WiFiManager::WiFiInfo info;
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ namespace DeviceLayer {
31
31
class DiagnosticDataProviderImplNrf : public DiagnosticDataProviderImpl
32
32
{
33
33
public:
34
- #ifdef CONFIG_WIFI_NRF700X
34
+ #ifdef CONFIG_WIFI_NRF70
35
35
CHIP_ERROR GetWiFiBssId (MutableByteSpan & value) override ;
36
36
CHIP_ERROR GetWiFiSecurityType (app::Clusters::WiFiNetworkDiagnostics::SecurityTypeEnum & securityType) override ;
37
37
CHIP_ERROR GetWiFiVersion (app::Clusters::WiFiNetworkDiagnostics::WiFiVersionEnum & wiFiVersion) override ;
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ struct ChipDeviceEvent;
52
52
#endif
53
53
54
54
#ifndef CHIP_SYSTEM_CONFIG_PACKETBUFFER_CAPACITY_MAX
55
- #ifdef CONFIG_WIFI_NRF700X
55
+ #ifdef CONFIG_WIFI_NRF70
56
56
// Minimal mDNS uses Matter packet buffers, so as long as minimal mDNS is used
57
57
// in Nordic's Wi-Fi solution, the packet buffers must be a bit bigger than what
58
58
// is required by Matter.
@@ -62,7 +62,7 @@ struct ChipDeviceEvent;
62
62
// unless for large messages that can be sent over BTP or TCP. But those will
63
63
// likely require a separate buffer pool or employ chained buffers.
64
64
#define CHIP_SYSTEM_CONFIG_PACKETBUFFER_CAPACITY_MAX 1280
65
- #endif // CONFIG_WIFI_NRF700X
65
+ #endif // CONFIG_WIFI_NRF70
66
66
#endif // CHIP_SYSTEM_CONFIG_PACKETBUFFER_CAPACITY_MAX
67
67
68
68
// ========== Platform-specific Configuration Overrides =========
Original file line number Diff line number Diff line change 24
24
25
25
#define MBEDTLS_CIPHER_PADDING_PKCS7
26
26
27
- #if CONFIG_WIFI_NXP && CONFIG_WPA_SUPP
27
+ #if CONFIG_WIFI_NXP && CONFIG_WIFI_NM_WPA_SUPPLICANT
28
28
#include "wpa_supp_els_pkc_mbedtls_config.h"
29
- #endif /* CONFIG_WIFI_NXP && CONFIG_WPA_SUPP */
29
+ #endif /* CONFIG_WIFI_NXP && CONFIG_WIFI_NM_WPA_SUPPLICANT */
30
30
31
31
#if CONFIG_MCUX_PSA_CRYPTO_DRIVER_ELS_PKC
32
32
#define PSA_CRYPTO_DRIVER_ELS_PKC
You can’t perform that action at this time.
0 commit comments