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 a7bab5b commit 461f855Copy full SHA for 461f855
extras/build_all.py
@@ -59,6 +59,10 @@ def build_examples(variant: str):
59
fqbn = "{}{}".format(FQBN_PREFIX, variant)
60
61
for sketch in glob.iglob('libraries/**/*.ino', recursive=True):
62
+ # TODO skip TinyUSB library examples for now
63
+ if "libraries/Adafruit_TinyUSB_Arduino" in sketch:
64
+ continue
65
+
66
start_time = time.monotonic()
67
68
# Skip if contains: ".board.test.skip" or ".all.test.skip"
0 commit comments