From dfdb6bca47253028f74a7bcb960330dfb07ebc18 Mon Sep 17 00:00:00 2001 From: proddy Date: Sun, 1 Sep 2024 13:44:22 +0200 Subject: [PATCH] upload url test for 4MB Tasmota --- src/test/test.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/test/test.cpp b/src/test/test.cpp index 2594adc49..c81d98b96 100644 --- a/src/test/test.cpp +++ b/src/test/test.cpp @@ -417,7 +417,10 @@ void Test::run_test(uuid::console::Shell & shell, const std::string & cmd, const if (command == "upload") { // S3 has 16MB flash - EMSESP::system_.uploadFirmwareURL("https://github.com/emsesp/EMS-ESP32/releases/download/latest/EMS-ESP-3_7_0-dev_31-ESP32S3-16MB+.bin"); + // EMSESP::system_.uploadFirmwareURL("https://github.com/emsesp/EMS-ESP32/releases/download/latest/EMS-ESP-3_7_0-dev_32-ESP32S3-16MB+.bin"); + + // Test for 4MB Tasmota builds + EMSESP::system_.uploadFirmwareURL("https://github.com/emsesp/EMS-ESP32/releases/download/latest/EMS-ESP-3_7_0-dev_32-ESP32-16MB.bin"); ok = true; } #endif