Skip to content

Commit

Permalink
renesas-ra/boards/make-pins.py: Fix PA/PB pins support.
Browse files Browse the repository at this point in the history
Signed-off-by: Takeo Takahashi <takeo.takahashi.xv@renesas.com>
  • Loading branch information
TakeoTakahashi2020 authored and dpgeorge committed Jun 1, 2023
1 parent 633408a commit 1f60841
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ports/renesas-ra/boards/make-pins.py
Expand Up @@ -140,7 +140,7 @@ def parse_af_file(self, filename):
for row in rows:
try:
cpu_pin_name = row[0]
cpu_pin_port = int(row[1])
cpu_pin_port = int(row[1], 16)
cpu_pin_bit = int(row[2])
except:
continue
Expand Down

0 comments on commit 1f60841

Please sign in to comment.