Versão sem FFT e aquisição por DMA. 256 amostras.

Dependencies:   EthernetInterface NTPClient mbed-rtos mbed

Revision:
0:e57bc370d339
diff -r 000000000000 -r e57bc370d339 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:45:44 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