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.
Fork of SerialHalfDuplex by
SerialHalfDuplex.h
- Committer:
- cpotron
- Date:
- 2018-04-25
- Revision:
- 2:242a54f3629b
- Parent:
- 0:7802a25daf3b
File content as of revision 2:242a54f3629b:
#ifndef MBED_SERIALHALFDUPLEX_H #define MBED_SERIALHALFDUPLEX_H #include "mbed.h" class SerialHalfDuplex { public: SerialHalfDuplex(PinName tx, PinName rx); int putc(int byte); int getc(); private: Serial in; Serial out; }; #endif