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 authored and jaenrig-ifx committed Sep 9, 2024
1 parent 8277eb1 commit b497052
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 b497052

Please sign in to comment.