我已经设置了UART,通过使用SMING框架的Telnet_TCPServer_TCPClient示例,使用CommandProcessing库接收和处理命令。
以下是相关代码;
void init()
{
Serial.begin(SERIAL_BAUD_RATE);
Serial.commandProcessing(true);
commandHandler.registerCommand(CommandDelegate("appheap","Usage appheap on/off/now for heapdisplay\r\n","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 ,off
和appheap,off
都可以正常工作。
答案 0 :(得分:1)
命令处理库无法使用逗号检测命令。它用空格检测命令。您可以使用CommandDelegate("command_name","Usage", ...)
创建命令列表。
在您的上下文中,appheap,off
没有空格,因此您会收到消息Command not found, cmd = 'appheap,off'
。调用命令的正确方法是appheap off
。