18
18
#include < app/icd/server/ICDConfigurationData.h>
19
19
#include < lib/support/logging/CHIPLogging.h>
20
20
#include < platform/silabs/wifi/WifiInterfaceAbstraction.h>
21
- #include < platform/silabs/wifi/icd/PlatformSleepManager .h>
21
+ #include < platform/silabs/wifi/icd/WifiSleepManager .h>
22
22
23
23
using namespace chip ::app;
24
24
@@ -27,39 +27,39 @@ namespace DeviceLayer {
27
27
namespace Silabs {
28
28
29
29
// Initialize the static instance
30
- PlatformSleepManager PlatformSleepManager ::mInstance ;
30
+ WifiSleepManager WifiSleepManager ::mInstance ;
31
31
32
- CHIP_ERROR PlatformSleepManager ::Init ()
32
+ CHIP_ERROR WifiSleepManager ::Init ()
33
33
{
34
34
return CHIP_NO_ERROR;
35
35
}
36
36
37
- void PlatformSleepManager ::HandleCommissioningComplete ()
37
+ void WifiSleepManager ::HandleCommissioningComplete ()
38
38
{
39
39
TransitionToLowPowerMode ();
40
40
}
41
41
42
- void PlatformSleepManager ::HandleInternetConnectivityChange ()
42
+ void WifiSleepManager ::HandleInternetConnectivityChange ()
43
43
{
44
44
if (!isCommissioningInProgress)
45
45
{
46
46
TransitionToLowPowerMode ();
47
47
}
48
48
}
49
49
50
- void PlatformSleepManager ::HandleCommissioningWindowClose () {}
50
+ void WifiSleepManager ::HandleCommissioningWindowClose () {}
51
51
52
- void PlatformSleepManager ::HandleCommissioningSessionStarted ()
52
+ void WifiSleepManager ::HandleCommissioningSessionStarted ()
53
53
{
54
54
isCommissioningInProgress = true ;
55
55
}
56
56
57
- void PlatformSleepManager ::HandleCommissioningSessionStopped ()
57
+ void WifiSleepManager ::HandleCommissioningSessionStopped ()
58
58
{
59
59
isCommissioningInProgress = false ;
60
60
}
61
61
62
- CHIP_ERROR PlatformSleepManager ::RequestHighPerformance ()
62
+ CHIP_ERROR WifiSleepManager ::RequestHighPerformance ()
63
63
{
64
64
VerifyOrReturnError (mHighPerformanceRequestCounter < std::numeric_limits<uint8_t >::max (), CHIP_ERROR_INTERNAL,
65
65
ChipLogError (DeviceLayer, " High performance request counter overflow" ));
@@ -78,7 +78,7 @@ CHIP_ERROR PlatformSleepManager::RequestHighPerformance()
78
78
return CHIP_NO_ERROR;
79
79
}
80
80
81
- CHIP_ERROR PlatformSleepManager ::RemoveHighPerformanceRequest ()
81
+ CHIP_ERROR WifiSleepManager ::RemoveHighPerformanceRequest ()
82
82
{
83
83
VerifyOrReturnError (mHighPerformanceRequestCounter > 0 , CHIP_NO_ERROR,
84
84
ChipLogError (DeviceLayer, " Wi-Fi configuration already in low power mode" ));
@@ -93,7 +93,7 @@ CHIP_ERROR PlatformSleepManager::RemoveHighPerformanceRequest()
93
93
return CHIP_NO_ERROR;
94
94
}
95
95
96
- CHIP_ERROR PlatformSleepManager ::TransitionToLowPowerMode ()
96
+ CHIP_ERROR WifiSleepManager ::TransitionToLowPowerMode ()
97
97
{
98
98
VerifyOrReturnError (mHighPerformanceRequestCounter == 0 , CHIP_NO_ERROR,
99
99
ChipLogDetail (DeviceLayer, " High Performance Requested - Device cannot go to a lower power mode." ));
0 commit comments