diff --git a/src/platform/nxp/common/ota/OTAFirmwareProcessor.cpp b/src/platform/nxp/common/ota/OTAFirmwareProcessor.cpp index a9015d8e1822d8..b0e422221d5aec 100644 --- a/src/platform/nxp/common/ota/OTAFirmwareProcessor.cpp +++ b/src/platform/nxp/common/ota/OTAFirmwareProcessor.cpp @@ -107,6 +107,8 @@ CHIP_ERROR OTAFirmwareProcessor::ApplyAction() CHIP_ERROR OTAFirmwareProcessor::AbortAction() { OTA_CancelImage(); + OTA_ServiceDeInit(); + Clear(); return CHIP_NO_ERROR; diff --git a/src/platform/nxp/common/ota/OTAImageProcessorImpl.cpp b/src/platform/nxp/common/ota/OTAImageProcessorImpl.cpp index 59af9449b9af76..462e4ff3b3bbba 100644 --- a/src/platform/nxp/common/ota/OTAImageProcessorImpl.cpp +++ b/src/platform/nxp/common/ota/OTAImageProcessorImpl.cpp @@ -390,12 +390,13 @@ void OTAImageProcessorImpl::HandleApply(intptr_t context) ConfigurationManagerImpl().StoreSoftwareUpdateCompleted(); PlatformMgr().HandleServerShuttingDown(); - - // Set the necessary information to inform the SSBL that a new image is available - // and trigger the actual device reboot after some time, to take into account - // queued actions, e.g. sending events to a subscription + /* + * Set the necessary information to inform the SSBL/bootloader that a new image + * is available and trigger the actual device reboot after some time, to take + * into account queued actions, e.g. sending events to a subscription. + */ SystemLayer().StartTimer( - chip::System::Clock::Milliseconds32(CHIP_DEVICE_LAYER_OTA_REBOOT_DELAY), + chip::System::Clock::Milliseconds32(imageProcessor->mDelayBeforeRebootSec * 1000 + CHIP_DEVICE_LAYER_OTA_REBOOT_DELAY), [](chip::System::Layer *, void *) { OtaHookReset(); }, nullptr); }