We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c882b1 commit ad918d6Copy full SHA for ad918d6
tools/update-components.sh
@@ -10,6 +10,11 @@ TINYUSB_REPO_URL="https://github.com/hathach/tinyusb.git"
10
TINYUSB_REPO_DIR="$AR_COMPS/arduino_tinyusb/tinyusb"
11
if [ ! -d "$TINYUSB_REPO_DIR" ]; then
12
git clone "$TINYUSB_REPO_URL" "$TINYUSB_REPO_DIR"
13
+ # Temporary fix given that tinyusb/master is breaking Lib Builder
14
+ cd "$TINYUSB_REPO_DIR"
15
+ # from right before Keyboard LED problem
16
+ git checkout 69313ef45564cc8967575f47fb8c57371cbea470
17
+ cd -
18
else
19
git -C "$TINYUSB_REPO_DIR" fetch && \
20
git -C "$TINYUSB_REPO_DIR" pull --ff-only
0 commit comments