From 8c181fdfb7ca1fe2c53046736485608d9d46217b Mon Sep 17 00:00:00 2001 From: Just Call Me Koko Date: Tue, 24 Feb 2026 14:09:44 -0500 Subject: [PATCH] Manual channel scrolling --- esp32_marauder/MenuFunctions.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/esp32_marauder/MenuFunctions.cpp b/esp32_marauder/MenuFunctions.cpp index 5a4563d..97489a4 100644 --- a/esp32_marauder/MenuFunctions.cpp +++ b/esp32_marauder/MenuFunctions.cpp @@ -463,6 +463,9 @@ void MenuFunctions::main(uint32_t currentTime) (wifi_scan_obj.currentScanMode == WIFI_SCAN_CHAN_ANALYZER) || (wifi_scan_obj.currentScanMode == WIFI_SCAN_PACKET_RATE) || (wifi_scan_obj.currentScanMode == WIFI_SCAN_RAW_CAPTURE) || + (wifi_scan_obj.currentScanMode == WIFI_SCAN_AP) || + (wifi_scan_obj.currentScanMode == WIFI_SCAN_PROBE) || + (wifi_scan_obj.currentScanMode == WIFI_SCAN_DEAUTH) || (wifi_scan_obj.currentScanMode == WIFI_SCAN_SIG_STREN)) { #ifndef HAS_DUAL_BAND if (wifi_scan_obj.set_channel < 14) @@ -528,6 +531,9 @@ void MenuFunctions::main(uint32_t currentTime) (wifi_scan_obj.currentScanMode == WIFI_SCAN_CHAN_ANALYZER) || (wifi_scan_obj.currentScanMode == WIFI_SCAN_PACKET_RATE) || (wifi_scan_obj.currentScanMode == WIFI_SCAN_RAW_CAPTURE) || + (wifi_scan_obj.currentScanMode == WIFI_SCAN_AP) || + (wifi_scan_obj.currentScanMode == WIFI_SCAN_PROBE) || + (wifi_scan_obj.currentScanMode == WIFI_SCAN_DEAUTH) || (wifi_scan_obj.currentScanMode == WIFI_SCAN_SIG_STREN)) { #ifndef HAS_DUAL_BAND if (wifi_scan_obj.set_channel > 1) @@ -649,6 +655,9 @@ void MenuFunctions::main(uint32_t currentTime) (wifi_scan_obj.currentScanMode == WIFI_SCAN_CHAN_ANALYZER) || (wifi_scan_obj.currentScanMode == WIFI_SCAN_PACKET_RATE) || (wifi_scan_obj.currentScanMode == WIFI_SCAN_RAW_CAPTURE) || + (wifi_scan_obj.currentScanMode == WIFI_SCAN_AP) || + (wifi_scan_obj.currentScanMode == WIFI_SCAN_PROBE) || + (wifi_scan_obj.currentScanMode == WIFI_SCAN_DEAUTH) || (wifi_scan_obj.currentScanMode == WIFI_SCAN_SIG_STREN)) { #ifndef HAS_DUAL_BAND if (wifi_scan_obj.set_channel < 14) @@ -722,6 +731,9 @@ void MenuFunctions::main(uint32_t currentTime) (wifi_scan_obj.currentScanMode == WIFI_SCAN_CHAN_ANALYZER) || (wifi_scan_obj.currentScanMode == WIFI_SCAN_PACKET_RATE) || (wifi_scan_obj.currentScanMode == WIFI_SCAN_RAW_CAPTURE) || + (wifi_scan_obj.currentScanMode == WIFI_SCAN_AP) || + (wifi_scan_obj.currentScanMode == WIFI_SCAN_PROBE) || + (wifi_scan_obj.currentScanMode == WIFI_SCAN_DEAUTH) || (wifi_scan_obj.currentScanMode == WIFI_SCAN_SIG_STREN)) { #ifndef HAS_DUAL_BAND if (wifi_scan_obj.set_channel > 1)