File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
soc/silabs/silabs_siwx91x/siwg917 Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,10 @@ static void siwx91x_configure_ap_mode(sl_si91x_boot_configuration_t *boot_config
102
102
{
103
103
boot_config -> oper_mode = SL_SI91X_ACCESS_POINT_MODE ;
104
104
boot_config -> coex_mode = SL_SI91X_WLAN_ONLY_MODE ;
105
- boot_config -> custom_feature_bit_map |= SL_SI91X_CUSTOM_FEAT_LIMIT_PACKETS_PER_STA ;
105
+
106
+ if (IS_ENABLED (CONFIG_WIFI_SILABS_SIWX91X_LIMIT_PACKET_BUF_PER_STA )) {
107
+ boot_config -> custom_feature_bit_map |= SL_SI91X_CUSTOM_FEAT_LIMIT_PACKETS_PER_STA ;
108
+ }
106
109
107
110
if (hidden_ssid ) {
108
111
boot_config -> custom_feature_bit_map |= SL_SI91X_CUSTOM_FEAT_AP_IN_HIDDEN_MODE ;
@@ -200,6 +203,11 @@ int siwx91x_get_nwp_config(sl_wifi_device_configuration_t *get_config, uint8_t w
200
203
}
201
204
202
205
if (IS_ENABLED (CONFIG_WIFI_SILABS_SIWX91X )) {
206
+ if (!IS_ENABLED (CONFIG_PM )) {
207
+ boot_config -> custom_feature_bit_map |=
208
+ SL_SI91X_CUSTOM_FEAT_SOC_CLK_CONFIG_160MHZ ;
209
+ }
210
+
203
211
siwx91x_configure_network_stack (boot_config , wifi_oper_mode );
204
212
}
205
213
You can’t perform that action at this time.
0 commit comments