diff options
author | Damien George <damien.p.george@gmail.com> | 2017-04-18 12:13:51 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-04-18 12:13:51 +1000 |
commit | fabaa6143745cf09928dfc13367ddc91e0eb9ad2 (patch) | |
tree | 80e3dc6773c0a2563150daa04181cf19c3b5ac42 /docs/library/machine.UART.rst | |
parent | e75fd3a8e995d4368a86f3050743e6b0709716f9 (diff) | |
download | micropython-fabaa6143745cf09928dfc13367ddc91e0eb9ad2.tar.gz micropython-fabaa6143745cf09928dfc13367ddc91e0eb9ad2.zip |
docs/library/machine.UART: Remove pyboard-specific section.
stmhal doesn't have a machine.UART class so this section is not needed.
Diffstat (limited to 'docs/library/machine.UART.rst')
-rw-r--r-- | docs/library/machine.UART.rst | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/docs/library/machine.UART.rst b/docs/library/machine.UART.rst index 55a5f354d2..c29d079b75 100644 --- a/docs/library/machine.UART.rst +++ b/docs/library/machine.UART.rst @@ -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 ------------ |