10000 docs/renesas-ra: Add pin drive keyword argument description. · lowfatcode/micropython@af100b7 · GitHub
[go: up one dir, main page]

Skip to content

Commit af100b7

Browse files
TakeoTakahashi2020dpgeorge
authored andcommitted
docs/renesas-ra: Add pin drive keyword argument description.
Signed-off-by: Takeo Takahashi <takeo.takahashi.xv@renesas.com>
1 parent 2f2fd36 commit af100b7

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

docs/renesas-ra/quickref.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,24 @@ Use the :ref:`machine.Pin <machine.Pin>` class::
110110

111111
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.
112112

113+
The following *drive* keyword argument are available if the port drive capability of the Pin is supported by the MCU::
114+
115+
Pin.DRIVE_0: Low drive
116+
Pin.DRIVE_1: Middle drive
117+
Pin.DRIVE_2: Middle drive for I2C Fast-mode
118+
Pin.DRIVE_3: High drive
119+
120+
The *alt* keyword argument is not supported.
121+
122+
The following functions are not supported::
123+
124+
Pin.irq(priority=) # priority keyword argument is not supported
125+
Pin.irq(wake=) # wake keyword argument is not supported
126+
Pin.irq(hard=) # hard keyword argument is ignored because hardware interrupt is used
127+
Pin.mode()
128+
Pin.pull()
129+
Pin.drive()
130+
113131
UART (serial bus)
114132
-----------------
115133

0 commit comments

Comments
 (0)
0