Skip to content

Commit

Permalink
Pull request #9: [SLC-TEMP] Add missing power manager include
Browse files Browse the repository at this point in the history
Merge in WMN_TOOLS/matter_sdk from fix/add_missing_include to develop

Squashed commit of the following:

commit fefb0651a12222792069b220bbe9e2b3027ba637
Author: Mathieu Kardous <[email protected]>
Date:   Tue Aug 13 15:02:28 2024 -0400

    Add missing power manager include
  • Loading branch information
mkardous-silabs committed Aug 13, 2024
1 parent 902ce5b commit 3db8017
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion examples/platform/silabs/SiWx917/SiWx917/sl_wifi_if.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ extern "C" {
#include "sl_si91x_m4_ps.h"
}

// [SLC-TEMP] Adding power manager include until we update wiseconnect version and upstream the changes
#include "sl_si91x_power_manager.h"

namespace {
// TODO: should be removed once we are getting the press interrupt for button 0 with sleep
#define BUTTON_PRESSED 1
Expand Down Expand Up @@ -687,7 +690,7 @@ static sl_status_t wfx_rsi_do_join(void)
case WFX_SEC_WPA3:
ap.security = SL_WIFI_WPA3_TRANSITION;
#else
ap.security = SL_WIFI_WPA_WPA2_MIXED;
ap.security = SL_WIFI_WPA_WPA2_MIXED;
#endif // WIFI_ENABLE_SECURITY_WPA3_TRANSITION
break;
case WFX_SEC_NONE:
Expand Down

0 comments on commit 3db8017

Please sign in to comment.