Skip to content

Commit

Permalink
fix missing function name
Browse files Browse the repository at this point in the history
  • Loading branch information
mkardous-silabs committed Sep 22, 2023
1 parent 0aebaec commit d1df53e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ CHIP_ERROR IcdManagementAttributeAccess::Read(const ConcreteReadAttributePath &

CHIP_ERROR IcdManagementAttributeAccess::ReadIdleModeInterval(EndpointId endpoint, AttributeValueEncoder & encoder)
{
return encoder.Encode(IcdManagementServer::GetInstance().GetIdleModeInterval());
return encoder.Encode(IcdManagementServer::GetInstance().GetIdleModeIntervalSec());
}

CHIP_ERROR IcdManagementAttributeAccess::ReadActiveModeInterval(EndpointId endpoint, AttributeValueEncoder & encoder)
Expand All @@ -99,7 +99,7 @@ CHIP_ERROR IcdManagementAttributeAccess::ReadActiveModeInterval(EndpointId endpo

CHIP_ERROR IcdManagementAttributeAccess::ReadActiveModeThreshold(EndpointId endpoint, AttributeValueEncoder & encoder)
{
return encoder.Encode(IcdManagementServer::GetInstance().GetActiveModeThreshold());
return encoder.Encode(IcdManagementServer::GetInstance().GetActiveModeThresholdMs());
}

CHIP_ERROR IcdManagementAttributeAccess::ReadRegisteredClients(EndpointId endpoint, AttributeValueEncoder & encoder)
Expand Down

0 comments on commit d1df53e

Please sign in to comment.