mirror of
https://github.com/micropython/micropython.git
synced 2026-01-05 03:30:14 +01:00
renesas-ra/boards/make-pins.py: Fix PA/PB pins support.
Signed-off-by: Takeo Takahashi <takeo.takahashi.xv@renesas.com>
This commit is contained in:
committed by
Damien George
parent
633408a4a5
commit
1f60841123
@@ -140,7 +140,7 @@ class Pins(object):
|
|||||||
for row in rows:
|
for row in rows:
|
||||||
try:
|
try:
|
||||||
cpu_pin_name = row[0]
|
cpu_pin_name = row[0]
|
||||||
cpu_pin_port = int(row[1])
|
cpu_pin_port = int(row[1], 16)
|
||||||
cpu_pin_bit = int(row[2])
|
cpu_pin_bit = int(row[2])
|
||||||
except:
|
except:
|
||||||
continue
|
continue
|
||||||
|
|||||||
Reference in New Issue
Block a user