@@ -83,7 +83,6 @@ extern "C" {
83
83
#endif // CHIP_CONFIG_ENABLE_ICD_SERVER
84
84
85
85
WfxRsi_t wfx_rsi;
86
- extern osSemaphoreId_t sl_rs_ble_init_sem;
87
86
88
87
namespace {
89
88
@@ -116,7 +115,7 @@ osMessageQueueId_t sWifiEventQueue = nullptr;
116
115
sl_net_wifi_lwip_context_t wifi_client_context;
117
116
sl_wifi_security_t security = SL_WIFI_SECURITY_UNKNOWN;
118
117
119
- // TODO : Temporary work-around for wifi-init failure in 917NCP ACX module board(BRD4357A). Can be removed after
118
+ // TODO : Temporary work-around for wifi-init failure in 917NCP ACX module board(BRD4357A). Can be removed after
120
119
// Wiseconnect fixes region code for all ACX module boards.
121
120
#ifdef EXP_BOARD
122
121
#define REGION_CODE IGNORE_REGION
@@ -284,7 +283,6 @@ sl_status_t sl_wifi_siwx917_init(void)
284
283
#endif // SL_MBEDTLS_USE_TINYCRYPT
285
284
286
285
wfx_rsi.dev_state .Set (WifiState::kStationInit );
287
- osSemaphoreRelease (sl_rs_ble_init_sem);
288
286
return status;
289
287
}
290
288
@@ -409,11 +407,11 @@ sl_status_t SetWifiConfigurations()
409
407
/* *
410
408
* @brief Callback function for the SL_WIFI_JOIN_EVENTS group
411
409
*
412
- * This callback handler will be invoked when any event within join event group occurs, providing the event details and any associated data
413
- * The callback doesn't get called when we join a network using the sl net APIs
410
+ * This callback handler will be invoked when any event within join event group occurs, providing the event details and any
411
+ * associated data The callback doesn't get called when we join a network using the sl net APIs
412
+ *
413
+ * @note In case of failure, the 'result' parameter will be of type sl_status_t, and the 'resultLenght' parameter should be ignored
414
414
*
415
- * @note In case of failure, the 'result' parameter will be of type sl_status_t, and the 'resultLenght' parameter should be ignored
416
- *
417
415
* @param[in] event sl_wifi_event_t that triggered the callback
418
416
* @param[in] result Pointer to the response data received
419
417
* @param[in] result_length Length of the data received in bytes
@@ -478,7 +476,7 @@ sl_status_t JoinWifiNetwork(void)
478
476
// failure only happens when the firmware returns an error
479
477
ChipLogError (DeviceLayer, " sl_net_up failed: 0x%lx" , static_cast <uint32_t >(status));
480
478
481
- // Deactivate the network interface before activating it on the next retry.
479
+ // Deactivate the network interface before activating it on the next retry.
482
480
if ((status == SL_STATUS_SI91X_SCAN_ISSUED_IN_ASSOCIATED_STATE) || (status == SL_STATUS_SI91X_COMMAND_GIVEN_IN_INVALID_STATE))
483
481
{
484
482
status = sl_net_down ((sl_net_interface_t ) SL_NET_WIFI_CLIENT_INTERFACE);
@@ -906,7 +904,7 @@ void wfx_dhcp_got_ipv4(uint32_t ip)
906
904
/*
907
905
* Acquire the new IP address
908
906
*/
909
- wfx_rsi.ip4_addr [0 ] = (ip) & 0xFF ;
907
+ wfx_rsi.ip4_addr [0 ] = (ip) &0xFF ;
910
908
wfx_rsi.ip4_addr [1 ] = (ip >> 8 ) & 0xFF ;
911
909
wfx_rsi.ip4_addr [2 ] = (ip >> 16 ) & 0xFF ;
912
910
wfx_rsi.ip4_addr [3 ] = (ip >> 24 ) & 0xFF ;
@@ -922,7 +920,7 @@ void wfx_dhcp_got_ipv4(uint32_t ip)
922
920
sl_status_t ConfigurePowerSave (rsi_power_save_profile_mode_t sl_si91x_ble_state, sl_si91x_performance_profile_t sl_si91x_wifi_state,
923
921
uint32_t listenInterval)
924
922
{
925
- int32_t error = rsi_bt_power_save_profile (sl_si91x_ble_state, 0 );
923
+ int32_t error = rsi_bt_power_save_profile (sl_si91x_ble_state, RSI_MAX_PSP );
926
924
VerifyOrReturnError (error == RSI_SUCCESS, SL_STATUS_FAIL,
927
925
ChipLogError (DeviceLayer, " rsi_bt_power_save_profile failed: %ld" , error));
928
926
0 commit comments