Versão estável sem DMA e FFT. 128 amostras.
Dependencies: EthernetInterface NTPClient mbed-rtos mbed
Diff: Codes/TelnetCommands/telnet_help.cpp
- Revision:
- 0:fac116e94d44
diff -r 000000000000 -r fac116e94d44 Codes/TelnetCommands/telnet_help.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Codes/TelnetCommands/telnet_help.cpp Tue Jan 05 11:47:35 2016 +0000 @@ -0,0 +1,25 @@ + +#include "TelnetServer.h" + + +char *header_msg_help = "This is a list of available commands:\r\n\r\n"; + +int TelnetServer::HelpCommand(TCPSocketConnection *conn, char ** argv,int argc) +{ + printf("Entering help command...\n"); + + conn->send(header_msg_help,strlen(header_msg_help)); + + int i; + for(i=0;(unsigned int)cmds[i].pfn != 0;i++) + { + + Thread::wait(20); + conn->send(cmds[i].command_name,strlen(cmds[i].command_name)); + + //printf("cmd=%s\n",cmds[i].command_name); + conn->send("\r\n",2); + } + + return 0; +} \ No newline at end of file