mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #5066 from kjbracey-arm/uartserial_readable
UARTSerial: Avoid readable() ambiguitypull/5217/head
commit
f7cca5b023
|
|
@ -56,6 +56,12 @@ public:
|
||||||
*/
|
*/
|
||||||
virtual short poll(short events) const;
|
virtual short poll(short events) const;
|
||||||
|
|
||||||
|
/* Resolve ambiguities versus our private SerialBase
|
||||||
|
* (for writable, spelling differs, but just in case)
|
||||||
|
*/
|
||||||
|
using FileHandle::readable;
|
||||||
|
using FileHandle::writable;
|
||||||
|
|
||||||
/** Write the contents of a buffer to a file
|
/** Write the contents of a buffer to a file
|
||||||
*
|
*
|
||||||
* @param buffer The buffer to write from
|
* @param buffer The buffer to write from
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue