mirror of https://github.com/ARMmbed/mbed-os.git
parent
b31bc766e6
commit
383798b525
|
|
@ -82,6 +82,10 @@ public:
|
|||
*/
|
||||
Serial(PinName tx, PinName rx, int baud);
|
||||
|
||||
/* Stream gives us a FileHandle with non-functional poll()/readable()/writable. Pass through
|
||||
* the calls from the SerialBase instead for backwards compatibility. This problem is
|
||||
* part of why Stream and Serial should be deprecated.
|
||||
*/
|
||||
bool readable()
|
||||
{
|
||||
return SerialBase::readable();
|
||||
|
|
|
|||
Loading…
Reference in New Issue