mbed library sources
Fork of mbed-src by
Revision 636:acd8185c8960, committed 2016-03-13
- Comitter:
- krbng4180
- Date:
- Sun Mar 13 21:09:20 2016 +0000
- Parent:
- 635:a11c0372f0ba
- Commit message:
- IT WORKS;
Changed in this revision
--- a/api/Serial.h Wed Sep 30 17:00:09 2015 +0100 +++ b/api/Serial.h Sun Mar 13 21:09:20 2016 +0000 @@ -61,6 +61,9 @@ * Either tx or rx may be specified as NC if unused */ Serial(PinName tx, PinName rx, const char *name=NULL); + + /* Copy contructor */ + Serial(const Serial& serial); protected: virtual int _getc();
--- a/api/Stream.h Wed Sep 30 17:00:09 2015 +0100 +++ b/api/Stream.h Sun Mar 13 21:09:20 2016 +0000 @@ -29,6 +29,7 @@ public: Stream(const char *name=NULL); + virtual ~Stream(); int putc(int c);
--- a/common/Serial.cpp Wed Sep 30 17:00:09 2015 +0100 +++ b/common/Serial.cpp Sun Mar 13 21:09:20 2016 +0000 @@ -23,6 +23,9 @@ Serial::Serial(PinName tx, PinName rx, const char *name) : SerialBase(tx, rx), Stream(name) { } +Serial::Serial(const Serial& serial) : SerialBase(USBTX, USBRX) { +} + int Serial::_getc() { return _base_getc(); }