Skip to content

Commit 3db8017

Browse files
Pull request #9: [SLC-TEMP] Add missing power manager include
Merge in WMN_TOOLS/matter_sdk from fix/add_missing_include to develop Squashed commit of the following: commit fefb0651a12222792069b220bbe9e2b3027ba637 Author: Mathieu Kardous <mathieu.kardous@silabs.com> Date: Tue Aug 13 15:02:28 2024 -0400 Add missing power manager include
1 parent 902ce5b commit 3db8017

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

examples/platform/silabs/SiWx917/SiWx917/sl_wifi_if.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ extern "C" {
5656
#include "sl_si91x_m4_ps.h"
5757
}
5858

59+
// [SLC-TEMP] Adding power manager include until we update wiseconnect version and upstream the changes
60+
#include "sl_si91x_power_manager.h"
61+
5962
namespace {
6063
// TODO: should be removed once we are getting the press interrupt for button 0 with sleep
6164
#define BUTTON_PRESSED 1
@@ -687,7 +690,7 @@ static sl_status_t wfx_rsi_do_join(void)
687690
case WFX_SEC_WPA3:
688691
ap.security = SL_WIFI_WPA3_TRANSITION;
689692
#else
690-
ap.security = SL_WIFI_WPA_WPA2_MIXED;
693+
ap.security = SL_WIFI_WPA_WPA2_MIXED;
691694
#endif // WIFI_ENABLE_SECURITY_WPA3_TRANSITION
692695
break;
693696
case WFX_SEC_NONE:

0 commit comments

Comments
 (0)