Skip to content

Commit

Permalink
ports/psoc6: Fix error index.
Browse files Browse the repository at this point in the history
Signed-off-by: IFX-Anusha <Anusha.TR@infineon.com>
  • Loading branch information
IFX-Anusha committed Aug 26, 2024
1 parent 25dc140 commit 3649c7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ports/psoc6/boards/make-pins.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def generate_pins_table(self, pin_pacakge_file_name):
pins_details_table = PinsDetailsTable()

for value in enum_values:
if value.startswith("P") or value.startswith("N"):
if value.startswith("P") or value.startswith("N") or value.startswith("U"):
pins_table.add_pin(value, value)

pins_details_table.add_pin_details("NC", 255, "CYHAL_GET_GPIO(CYHAL_PORT_31, 7)")
Expand Down

0 comments on commit 3649c7a

Please sign in to comment.