diff --git a/lib/cli/cli.cpp b/lib/cli/cli.cpp index b2aed5c9..c2078d83 100644 --- a/lib/cli/cli.cpp +++ b/lib/cli/cli.cpp @@ -290,7 +290,6 @@ void initShell(){ wcli.shell->attachLogo(logo); wcli.setCallback(new mESP32WifiCLICallbacks()); wcli.setSilentMode(true); - wcli.disableConnectInBoot(); // the old manager do that // Main Commands: wcli.add("reboot",&wcli_reboot, "\tperform a ESP32 reboot"); wcli.add("swipe", &wcli_swipe, "\t\tfactory settings reset. (needs confirmation)"); diff --git a/platformio.ini b/platformio.ini index 6c5b726a..5e7ab483 100644 --- a/platformio.ini +++ b/platformio.ini @@ -19,7 +19,7 @@ framework = arduino upload_speed = 1500000 monitor_speed = 115200 version = 0.7.0 -revision = 981 +revision = 982 # OTA remote update target (change it to none, if you want prevent CanAirIO updates) target = dev monitor_filters = @@ -37,7 +37,7 @@ build_flags = -D SHELLMINATOR_LOGO_COLOR=YELLOW -D COMMANDER_MAX_COMMAND_SIZE=70 -D WCLI_MAX_CMDS=16 - -D DISABLE_BLE=1 # removed Bluetooth module + ; -D DISABLE_BLE=1 # removed Bluetooth module ; -D DISABLE_BATT=1 # removed battery module ; -D DISABLE_CLI_TELNET=1 # disable remote access via telnet. It needs CLI ; -D DISABLE_CLI=1 # removed CLI module. Config via Bluetooth only