File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,16 @@ zephyr_library_compile_definitions_ifdef(CONFIG_WIFI_NM_WPA_SUPPLICANT_WNM
78
78
CONFIG_WNM
79
79
)
80
80
81
+ zephyr_library_compile_definitions_ifdef(CONFIG_WIFI_NM_WPA_SUPPLICANT_BGSCAN
82
+ CONFIG_BGSCAN
83
+ )
84
+ zephyr_library_compile_definitions_ifdef(CONFIG_WIFI_NM_WPA_SUPPLICANT_BGSCAN_SIMPLE
85
+ CONFIG_BGSCAN_SIMPLE
86
+ )
87
+ zephyr_library_compile_definitions_ifdef(CONFIG_WIFI_NM_WPA_SUPPLICANT_BGSCAN_LEARN
88
+ CONFIG_BGSCAN_LEARN
89
+ )
90
+
81
91
zephyr_library_include_directories(
82
92
${CMAKE_CURRENT_SOURCE_DIR} /src
83
93
${HOSTAP_BASE} /
@@ -156,6 +166,16 @@ zephyr_library_sources_ifdef(CONFIG_WIFI_NM_WPA_SUPPLICANT_WNM
156
166
${WIFI_NM_WPA_SUPPLICANT_BASE} /wnm_sta.c
157
167
)
158
168
169
+ zephyr_library_sources_ifdef(CONFIG_WIFI_NM_WPA_SUPPLICANT_BGSCAN
170
+ ${WIFI_NM_WPA_SUPPLICANT_BASE} /bgscan.c
171
+ )
172
+ zephyr_library_sources_ifdef(CONFIG_WIFI_NM_WPA_SUPPLICANT_BGSCAN_SIMPLE
173
+ ${WIFI_NM_WPA_SUPPLICANT_BASE} /bgscan_simple.c
174
+ )
175
+ zephyr_library_sources_ifdef(CONFIG_WIFI_NM_WPA_SUPPLICANT_BGSCAN_LEARN
176
+ ${WIFI_NM_WPA_SUPPLICANT_BASE} /bgscan_learn.c
177
+ )
178
+
159
179
zephyr_library_sources_ifdef(CONFIG_WPA_CLI
160
180
src/wpa_cli.c
161
181
)
Original file line number Diff line number Diff line change @@ -145,6 +145,22 @@ config WIFI_NM_WPA_SUPPLICANT_WNM
145
145
bool "Wireless Network Management support"
146
146
default y
147
147
148
+ config WIFI_NM_WPA_SUPPLICANT_BGSCAN
149
+ bool "Background scan and roaming interface"
150
+ default y
151
+ depends on WIFI_NM_WPA_SUPPLICANT_WNM
152
+
153
+ if WIFI_NM_WPA_SUPPLICANT_BGSCAN
154
+
155
+ config WIFI_NM_WPA_SUPPLICANT_BGSCAN_SIMPLE
156
+ bool "Background scan and roaming interface: simple"
157
+ default y
158
+
159
+ config WIFI_NM_WPA_SUPPLICANT_BGSCAN_LEARN
160
+ bool "Background scan and roaming interface: learn"
161
+
162
+ endif # WIFI_NM_WPA_SUPPLICANT_BGSCAN
163
+
148
164
config WIFI_NM_WPA_SUPPLICANT_RRM
149
165
bool "Radio Resource Management support"
150
166
default y
You can’t perform that action at this time.
0 commit comments