Skip to content

Commit

Permalink
[EFR32]Added fix for scan filtering and temp fix for reset count on R…
Browse files Browse the repository at this point in the history
…S9116 (project-chip#21328)

* Added fix for scan filtering and temp fix for reset count

* Fix restyled issue.

Co-authored-by: Boris Zbarsky <[email protected]>
  • Loading branch information
2 people authored and isiu-apple committed Sep 16, 2022
1 parent 4cada4f commit 28485a2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion src/platform/EFR32/DiagnosticDataProviderImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,12 @@ CHIP_ERROR DiagnosticDataProviderImpl::GetWiFiOverrunCount(uint64_t & overrunCou

CHIP_ERROR DiagnosticDataProviderImpl::ResetWiFiNetworkDiagnosticsCounts()
{
return CHIP_NO_ERROR;
int32_t err = wfx_reset_counts();
if (err == 0)
{
return CHIP_NO_ERROR;
}
return CHIP_ERROR_UNSUPPORTED_CHIP_FEATURE;
}
#endif // SL_WIFI

Expand Down

0 comments on commit 28485a2

Please sign in to comment.