Skip to content

Commit

Permalink
Added #endif comment
Browse files Browse the repository at this point in the history
  • Loading branch information
bhmanda-silabs committed Dec 5, 2024
1 parent cbdda13 commit 95dd3a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/platform/silabs/wifi/icd/ApplicationSleepManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ void ApplicationSleepManager::OnCommissioningWindowOpened()
mIsCommissionningWindowOpen = true;
#if ( ( defined(SLI_SI91X_MCU_INTERFACE) && SLI_SI91X_MCU_INTERFACE == 1 ) )
mWifiSleepManager->VerifyAndTransitionToLowPowerMode();
#endif
#endif // ( ( defined(SLI_SI91X_MCU_INTERFACE) && SLI_SI91X_MCU_INTERFACE == 1 ) )
}

void ApplicationSleepManager::OnCommissioningWindowClosed()
{
mIsCommissionningWindowOpen = false;
#if ( ( defined(SLI_SI91X_MCU_INTERFACE) && SLI_SI91X_MCU_INTERFACE == 1 ) )
mWifiSleepManager->VerifyAndTransitionToLowPowerMode();
#endif
#endif // ( ( defined(SLI_SI91X_MCU_INTERFACE) && SLI_SI91X_MCU_INTERFACE == 1 ) )
}

void ApplicationSleepManager::OnSubscriptionEstablished(chip::app::ReadHandler & aReadHandler)
Expand Down

0 comments on commit 95dd3a6

Please sign in to comment.