From d806175a80786eba5ebc98ddfd889ff22daa9b51 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Tue, 6 May 2025 22:06:47 -0500 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20OTA=5FFIRMWARE=5FUPDATE=20(Creality?= =?UTF-8?q?=20STM32F401RE)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Followup to #25773 --- Marlin/Configuration_adv.h | 3 +++ Marlin/src/gcode/ota/M936.cpp | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Marlin/Configuration_adv.h b/Marlin/Configuration_adv.h index a48a337270..f31a284d81 100644 --- a/Marlin/Configuration_adv.h +++ b/Marlin/Configuration_adv.h @@ -1938,6 +1938,9 @@ //#define CUSTOM_FIRMWARE_UPLOAD #endif + // "Over-the-air" Firmware Update with M936 - Required to set EEPROM flag + //#define OTA_FIRMWARE_UPDATE + /** * Set this option to one of the following (or the board's defaults apply): * diff --git a/Marlin/src/gcode/ota/M936.cpp b/Marlin/src/gcode/ota/M936.cpp index f42d197f4e..353e423c77 100644 --- a/Marlin/src/gcode/ota/M936.cpp +++ b/Marlin/src/gcode/ota/M936.cpp @@ -34,7 +34,6 @@ /** * M936: Set one of the OTA update flags. * V2 = Upgrade the motherboard firmware - * V3 = Upgrade the RTS controller firmware */ void GcodeSuite::M936() { static uint8_t ota_update_flag = 0x00;