Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
logr.h
- Committer:
- TeaPack_CZ
- Date:
- 2014-05-28
- Revision:
- 3:250e9ea5985b
File content as of revision 3:250e9ea5985b:
#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; };