From a5b3c7e7f9443319d9330ab6ab06c6b365226082 Mon Sep 17 00:00:00 2001
From: Lorenz Schmid <lorenzschmid@users.noreply.github.com>
Date: Wed, 14 Dec 2016 23:08:43 +0100
Subject: [PATCH] docs/library/pyb.UART: Moved writechar doc to sit with other
 writes.

---
 docs/library/pyb.UART.rst | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/docs/library/pyb.UART.rst b/docs/library/pyb.UART.rst
index 4f63c648f..76f347ffa 100644
--- a/docs/library/pyb.UART.rst
+++ b/docs/library/pyb.UART.rst
@@ -111,11 +111,6 @@ Methods
 
        Returns the number of bytes waiting (may be 0).
 
-    .. method:: UART.writechar(char)
-
-      Write a single character on the bus.  ``char`` is an integer to write.
-      Return value: ``None``. See note below if CTS flow control is used.
-
 .. method:: UART.read([nbytes])
 
    Read characters.  If ``nbytes`` is specified then read at most that many bytes.
@@ -167,6 +162,13 @@ Methods
       Return value: number of bytes written. If a timeout occurs and no bytes
       were written returns ``None``.
 
+.. only:: port_pyboard
+
+    .. method:: UART.writechar(char)
+
+      Write a single character on the bus.  ``char`` is an integer to write.
+      Return value: ``None``. See note below if CTS flow control is used.
+
 .. method:: UART.sendbreak()
 
    Send a break condition on the bus.  This drives the bus low for a duration
-- 
GitLab