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 115ce95 commit 5485717Copy full SHA for 5485717
tools/build_all.py
@@ -53,6 +53,10 @@ def build_examples(variant):
53
fqbn = "adafruit:nrf52:{}:softdevice={},debug=l0".format(variant, 's140v6' if variant != 'feather52832' else 's132v6')
54
55
for sketch in all_examples:
56
+ # skip TinyUSB library examples for nRF52832
57
+ if variant == 'feather52832' and "libraries/Adafruit_TinyUSB_Arduino" in sketch:
58
+ continue
59
+
60
start_time = time.monotonic()
61
62
# Skip if contains: ".board.test.skip" or ".all.test.skip"
0 commit comments