Versão do protegemed que calcula o tempo em ms da fuga, calcula o numero de onverflow (valores muito baixo) e underflow (valores muito altos). Além disso, calcula um valor médio a partir dos valores capturados e não apenas pela fft.

Dependencies:   EthernetInterface mbed-rtos mbed

Committer:
rebonatto
Date:
Wed Jul 09 21:16:23 2014 +0000
Revision:
0:c64e1194230b
Vers?o do Protegemed com calculo de tempo de fuga, overflow, underflow e novo valor m?dio (manual).

Who changed what in which revision?

UserRevisionLine numberNew contents of line
rebonatto 0:c64e1194230b 1
rebonatto 0:c64e1194230b 2 #include "TelnetServer.h"
rebonatto 0:c64e1194230b 3
rebonatto 0:c64e1194230b 4
rebonatto 0:c64e1194230b 5 char *header_msg_help = "This is a list of available commands:\r\n\r\n";
rebonatto 0:c64e1194230b 6
rebonatto 0:c64e1194230b 7 int TelnetServer::HelpCommand(TCPSocketConnection *conn, char ** argv,int argc)
rebonatto 0:c64e1194230b 8 {
rebonatto 0:c64e1194230b 9 printf("Entering help command...\n");
rebonatto 0:c64e1194230b 10
rebonatto 0:c64e1194230b 11 conn->send(header_msg_help,strlen(header_msg_help));
rebonatto 0:c64e1194230b 12
rebonatto 0:c64e1194230b 13 int i;
rebonatto 0:c64e1194230b 14 for(i=0;(unsigned int)cmds[i].pfn != 0;i++)
rebonatto 0:c64e1194230b 15 {
rebonatto 0:c64e1194230b 16
rebonatto 0:c64e1194230b 17 Thread::wait(20);
rebonatto 0:c64e1194230b 18 conn->send(cmds[i].command_name,strlen(cmds[i].command_name));
rebonatto 0:c64e1194230b 19
rebonatto 0:c64e1194230b 20 //printf("cmd=%s\n",cmds[i].command_name);
rebonatto 0:c64e1194230b 21 conn->send("\r\n",2);
rebonatto 0:c64e1194230b 22 }
rebonatto 0:c64e1194230b 23
rebonatto 0:c64e1194230b 24 return 0;
rebonatto 0:c64e1194230b 25 }