Logger using local flash memory and creating a new file every start.
Diff: logr.h
- Revision:
- 4:85606321b100
- Parent:
- 3:250e9ea5985b
--- a/logr.h Wed May 28 07:01:24 2014 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ -#include "mbed.h" - -class Loger { - -public: - Loger(); - void log_open(); - void log_close(); - void log_int2(int,int); - void log_rn(); - void log_chr(char[]); - -private: - LocalFileSystem local; - FILE * _loger; - int get_files(); - void mk_path(int); - char dst[30]; - float time; - -}; -