You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
errors.append(Exception("{}:{} {} is defined but none of {} are defined".format(board_header, define.lineno, name, list_to_string_with(expected_function_pins, "or"))))
551
569
570
+
# check for invalid PSRAM CS pin
571
+
ifname=="PICO_PSRAM_CS_PIN":
572
+
interface="QMI"
573
+
instance_num=0
574
+
function="CS1N"
575
+
ifinterfacenotinallowed_interfaces:
576
+
errors.append(Exception("{}:{} {} is defined but {} isn't in {}".format(board_header, define.lineno, name, interface, interfaces_json)))
errors.append(Exception("{}:{} {} is defined but {} isn't a valid function for {}".format(board_header, define.lineno, name, function, instance_define)))
errors.append(Exception("{}:{} {} is set to {} which isn't a valid pin for {} on {} {}".format(board_header, define.lineno, name, define.resolved_value, function, interface, instance_num)))
587
+
552
588
ifnothas_include_guard:
553
589
errors.append(Exception("{} has no include-guard (expected {})".format(board_header, expected_include_guard)))
0 commit comments