We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8887b5 commit 6d516f8Copy full SHA for 6d516f8
src/genpinmap/genpinmap_arduino.py
@@ -696,10 +696,10 @@ def print_usb(lst):
696
697
def print_usb_h():
698
if usb_list or usb_otgfs_list or usb_otghs_list:
699
- out_h_file.write(" /* USB */\n")
+ out_h_file.write("/* USB */\n")
700
out_h_file.write("#ifdef USBCON\n")
701
for p in usb_list + usb_otgfs_list + usb_otghs_list:
702
- out_h_file.write(" " + p[2] + " = " + p[0] + ",\n")
+ out_h_file.write(p[2] + " = " + p[0] + ",\n")
703
out_h_file.write("#endif\n")
704
705
@@ -942,6 +942,9 @@ def parse_pins():
942
943
nb_pin = len(io_list)
944
print(" * I/O pins found: %i" % nb_pin)
945
+ # io_list.sort(key=natural_sortkey)
946
+ # for io in io_list:
947
+ # print(io[1])
948
print("done\n")
949
clean_all_lists()
950
0 commit comments