You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/renesas-ra/quickref.rst
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -110,6 +110,24 @@ Use the :ref:`machine.Pin <machine.Pin>` class::
110
110
111
111
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.
112
112
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
0 commit comments