Skip to content

Commit 3586621

Browse files
yufengwangcapull[bot]
authored andcommitted
Initialize the generic implementation ConfigurationManager base class. (#16532)
1 parent 57a64dc commit 3586621

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/platform/cc13x2_26x2/ConfigurationManagerImpl.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ CHIP_ERROR ConfigurationManagerImpl::Init()
6565
CHIP_ERROR err;
6666
bool failSafeArmed;
6767

68+
// Initialize the generic implementation base class.
69+
err = Internal::GenericConfigurationManagerImpl<CC13X2_26X2Config>::Init();
70+
ReturnErrorOnFailure(err);
71+
6872
// If the fail-safe was armed when the device last shutdown, initiate a factory reset.
6973
if (GetFailSafeArmed(failSafeArmed) == CHIP_NO_ERROR && failSafeArmed)
7074
{

0 commit comments

Comments
 (0)