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
Diff: Functions/Split.h
- Revision:
- 0:c64e1194230b
diff -r 000000000000 -r c64e1194230b Functions/Split.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Functions/Split.h Wed Jul 09 21:16:23 2014 +0000 @@ -0,0 +1,25 @@ +/* + * Split.h + * + * Created on: 12/04/2012 + * Author: francisco + */ + +#ifndef SPLIT_H_ +#define SPLIT_H_ + +#include <stdio.h> +#include <string.h> +#include <stdlib.h> + +#ifdef __cplusplus +extern "C" { +#endif + +extern int split(char* str,char* delim,char*** ret ); + +#ifdef __cplusplus +}; +#endif + +#endif /* SPLIT_H_ */