baseline build
Dependencies: FastPWM mbed-os mbed
Diff: DebugPort.h
- Revision:
- 0:8a420ac6394e
diff -r 000000000000 -r 8a420ac6394e DebugPort.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/DebugPort.h Mon Jun 19 15:55:51 2017 +0000 @@ -0,0 +1,18 @@ +#ifndef __DEBUGPORT_H__ +#define __DEBUGPORT_H__ + +#include "mbed.h" +#include "Thread.h" +#include "string" + + +class DebugPort +{ +public: + DebugPort(void); + Serial debugport; + void DebugPort::Print(string,double); + +}; + +#endif