diff --git a/esp32_marauder/MenuFunctions.cpp b/esp32_marauder/MenuFunctions.cpp index 690f1b6..15c1819 100644 --- a/esp32_marauder/MenuFunctions.cpp +++ b/esp32_marauder/MenuFunctions.cpp @@ -1891,9 +1891,9 @@ void MenuFunctions::RunSetup() //addNodes(&bluetoothMenu, "Scanners", TFT_ORANGE, NULL, SCANNERS, [this]() { // changeMenu(&bluetoothScannerMenu); //}); - addNodes(&bluetoothMenu, text_table1[33], TFT_PURPLE, NULL, GENERAL_APPS, [this]() { + /*addNodes(&bluetoothMenu, text_table1[33], TFT_PURPLE, NULL, GENERAL_APPS, [this]() { changeMenu(&bluetoothGeneralMenu); - }); + });*/ // Build bluetooth sniffer Menu bluetoothSnifferMenu.parentMenu = &bluetoothMenu; // Second Menu is third menu parent @@ -1918,7 +1918,7 @@ void MenuFunctions::RunSetup() //}); // Build bluetooth general menu - bluetoothGeneralMenu.parentMenu = &bluetoothMenu; + /*bluetoothGeneralMenu.parentMenu = &bluetoothMenu; addNodes(&bluetoothGeneralMenu, text09, TFT_LIGHTGREY, NULL, 0, [this]() { changeMenu(bluetoothGeneralMenu.parentMenu); }); @@ -1931,7 +1931,7 @@ void MenuFunctions::RunSetup() shutdownBLEMenu.parentMenu = &bluetoothGeneralMenu; addNodes(&shutdownBLEMenu, text09, TFT_LIGHTGREY, NULL, 0, [this]() { changeMenu(shutdownBLEMenu.parentMenu); - }); + });*/ // Bad USB Menu //badusbMenu.parentMenu = &mainMenu; diff --git a/esp32_marauder/WiFiScan.cpp b/esp32_marauder/WiFiScan.cpp index 5d6600f..3b61bd0 100644 --- a/esp32_marauder/WiFiScan.cpp +++ b/esp32_marauder/WiFiScan.cpp @@ -766,7 +766,7 @@ void WiFiScan::RunGenerateSSIDs(int count) { #endif } -void WiFiScan::RunShutdownBLE() { +/*void WiFiScan::RunShutdownBLE() { #ifdef HAS_SCREEN display_obj.tft.setTextWrap(false); display_obj.tft.setFreeFont(NULL); @@ -791,7 +791,7 @@ void WiFiScan::RunShutdownBLE() { display_obj.tft.println(F(text_table4[19])); #endif } -} +}*/ void WiFiScan::RunInfo() { diff --git a/esp32_marauder/WiFiScan.h b/esp32_marauder/WiFiScan.h index e8d3e77..b4c6194 100644 --- a/esp32_marauder/WiFiScan.h +++ b/esp32_marauder/WiFiScan.h @@ -314,7 +314,7 @@ class WiFiScan void changeChannel(); void changeChannel(int chan); void RunInfo(); - void RunShutdownBLE(); + //void RunShutdownBLE(); void RunGenerateSSIDs(int count = 20); void RunClearSSIDs(); void RunClearAPs();