docs/library/machine.UART: Remove pyboard-specific section.

stmhal doesn't have a machine.UART class so this section is not needed.
This commit is contained in:
Damien George 2017-04-18 12:13:51 +10:00
parent e75fd3a8e9
commit fabaa61437
1 changed files with 0 additions and 11 deletions

View File

@ -32,17 +32,6 @@ using the standard stream methods::
uart.readinto(buf) # read and store into the given buffer
uart.write('abc') # write the 3 characters
.. only:: port_pyboard
Individual characters can be read/written using::
uart.readchar() # read 1 character and returns it as an integer
uart.writechar(42) # write 1 character
To check if there is anything to be read, use::
uart.any() # returns True if any characters waiting
Constructors
------------