在ESP8266 SMING示例中,命令未正确解析



我使用SMING框架的Telnet_TCPServer_TCPClient示例,设置了UART以使用CommandProcessing库接收和处理命令。

以下是相关代码;

void init()
{
    Serial.begin(SERIAL_BAUD_RATE); 
    Serial.commandProcessing(true);
    commandHandler.registerCommand(CommandDelegate("appheap","Usage appheap on/off/now for heapdisplayrn","testGroup", appheapCommand));
    memoryTimer.initializeMs(250,checkHeap).start();
}
void appheapCommand(String commandLine  ,CommandOutput* commandOutput)
{
    Vector<String> commandToken;
    int numToken = splitString(commandLine, ',' , commandToken);
        //The rest are same as inside sample code.
}

当我将这个字符串appheap ,off发送到UART时,命令被正确解析。

但是,当我将这个字符串appheap,off发送到UART时,命令没有被正确解析。返回的消息为Command not found, cmd = 'appheap,off'

如果一切顺利,那么字符串appheap ,offappheap,off应该都能正常工作。

命令处理库无法检测到带有逗号的命令。它检测带有空格的命令。使用CommandDelegate("command_name","Usage", ...)创建命令列表。

在您的上下文中,appheap,off没有空格,因此您将收到一条消息Command not found, cmd = 'appheap,off'。调用该命令的正确方法是appheap off

相关内容

  • 没有找到相关文章

最新更新