diff --git a/src/platform/cc13x2_26x2/ConfigurationManagerImpl.cpp b/src/platform/cc13x2_26x2/ConfigurationManagerImpl.cpp index bb402fef21e2ec..1db7197b6fdac1 100644 --- a/src/platform/cc13x2_26x2/ConfigurationManagerImpl.cpp +++ b/src/platform/cc13x2_26x2/ConfigurationManagerImpl.cpp @@ -65,6 +65,10 @@ CHIP_ERROR ConfigurationManagerImpl::Init() CHIP_ERROR err; bool failSafeArmed; + // Initialize the generic implementation base class. + err = Internal::GenericConfigurationManagerImpl::Init(); + ReturnErrorOnFailure(err); + // If the fail-safe was armed when the device last shutdown, initiate a factory reset. if (GetFailSafeArmed(failSafeArmed) == CHIP_NO_ERROR && failSafeArmed) {