diff --git a/src/core/serial_commands/wifi_commands.cpp b/src/core/serial_commands/wifi_commands.cpp index 496486cd9a..920eec60a1 100644 --- a/src/core/serial_commands/wifi_commands.cpp +++ b/src/core/serial_commands/wifi_commands.cpp @@ -110,11 +110,14 @@ void createWifiCommands(SimpleCLI *cli) { wifiCmd.addPosArg("ssid", ""); wifiCmd.addPosArg("pwd", ""); + #if !defined(LITE_VERSION) + Command ScanHostsCmd = cli->addCommand("arp", scanHostsCallback); Command listenTCPCmd = cli->addCommand("listen", listenTCPCallback); //TODO: make possible to select port to open via Serial Command snifferCmd = cli->addCommand("sniffer", snifferCallback); //TODO: be able to exit from it from Serial + #endif //Command responderCmd = cli->addCommand("responder", responderCallback); TODO }