From 7e3e73a06428c85285fc045825a457831dcfb7b2 Mon Sep 17 00:00:00 2001 From: Nic Limper Date: Sun, 25 Feb 2024 21:39:28 +0100 Subject: [PATCH] bugfix: no flasher-only detection on tag-based AP --- ESP32_AP-Flasher/src/serialap.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ESP32_AP-Flasher/src/serialap.cpp b/ESP32_AP-Flasher/src/serialap.cpp index 69954c90..585c83b5 100644 --- a/ESP32_AP-Flasher/src/serialap.cpp +++ b/ESP32_AP-Flasher/src/serialap.cpp @@ -755,6 +755,9 @@ bool bringAPOnline() { } bool checkRadio() { +#ifndef C6_OTA_FLASHING + return true; +#endif // make a short between FLASHER_AP_TXD and FLASHER_AP_RXD to indicate that no radio is present // e.g. for flasher only, or just to use the S3 to generate images for smaller AP's pinMode(FLASHER_AP_TXD, OUTPUT);