summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTakeo Takahashi <takeo.takahashi.xv@renesas.com>2022-06-23 22:29:00 +0900
committerDamien George <damien@micropython.org>2022-08-31 12:01:38 +1000
commitaf100b70290d20d7e9c3e7d49713e3916b6f05b6 (patch)
treef2debfd70559732c1a94cd33efbe828f104cd640 /docs
parent2f2fd36713c2c02f56093338e8c1f3cd7b8d403a (diff)
docs/renesas-ra: Add pin drive keyword argument description.
Signed-off-by: Takeo Takahashi <takeo.takahashi.xv@renesas.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/renesas-ra/quickref.rst18
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/renesas-ra/quickref.rst b/docs/renesas-ra/quickref.rst
index 23ffab50e..47b49575b 100644
--- a/docs/renesas-ra/quickref.rst
+++ b/docs/renesas-ra/quickref.rst
@@ -110,6 +110,24 @@ Use the :ref:`machine.Pin <machine.Pin>` class::
Pin id is available corresponding to the RA MCU's pin name which are Pin.cpu.P106 and 'P106'. The RA MCU has many feature's pins. However, there are some cases that pin feature is fixed or not connected by the board. Please confirm the board manual for the pin mapping.
+The following *drive* keyword argument are available if the port drive capability of the Pin is supported by the MCU::
+
+ Pin.DRIVE_0: Low drive
+ Pin.DRIVE_1: Middle drive
+ Pin.DRIVE_2: Middle drive for I2C Fast-mode
+ Pin.DRIVE_3: High drive
+
+The *alt* keyword argument is not supported.
+
+The following functions are not supported::
+
+ Pin.irq(priority=) # priority keyword argument is not supported
+ Pin.irq(wake=) # wake keyword argument is not supported
+ Pin.irq(hard=) # hard keyword argument is ignored because hardware interrupt is used
+ Pin.mode()
+ Pin.pull()
+ Pin.drive()
+
UART (serial bus)
-----------------