From 716543ec8c3f4d1927c21add352ac649646d12f4 Mon Sep 17 00:00:00 2001 From: Oswaldo Palma Date: Mon, 18 Aug 2025 13:06:25 +0200 Subject: [PATCH] "after dc_download restart autorequest or else E255" --- DownloadDCFirmware/update.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DownloadDCFirmware/update.cpp b/DownloadDCFirmware/update.cpp index 473203c..094eeae 100644 --- a/DownloadDCFirmware/update.cpp +++ b/DownloadDCFirmware/update.cpp @@ -439,9 +439,11 @@ int Update::run() { stopBootloader(); // there is no harm in stopping the bootloader even // if starting the bootloader failed qInfo() << nextTimePoint().toUtf8().constData() << ""; + m_hw->dc_autoRequest(true); //restart dc_autoRequest after download else E255! return -(int)Result::SUCCESS; } qInfo() << nextTimePoint().toUtf8().constData() << ""; + //To Do Error handling if Dc doesnt start after download return false; }