print.h
Diff: print.h
- Revision:
- 0:8164d2af3edf
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/print.h Mon Apr 06 13:08:23 2020 +0000 @@ -0,0 +1,14 @@ +#include <mbed.h> + +class Print +{ +private: + Serial *print_f; + +public: + Print(PinName, PinName); + void ISR_Serial_Tx(); + void printf(const char* Format, ...); +}; + +