Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7795ae2

Browse files
authoredOct 1, 2024··
fixes TinyUSB commit to 0877a486c
problems with TinyUSB master branch. It fails compilation.
1 parent 4d2c339 commit 7795ae2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎tools/update-components.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ TINYUSB_REPO_URL="https://github.com/hathach/tinyusb.git"
1010
TINYUSB_REPO_DIR="$AR_COMPS/arduino_tinyusb/tinyusb"
1111
if [ ! -d "$TINYUSB_REPO_DIR" ]; then
1212
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+
git checkout 0877a486c
16+
cd -
1317
else
1418
git -C "$TINYUSB_REPO_DIR" fetch && \
1519
git -C "$TINYUSB_REPO_DIR" pull --ff-only

0 commit comments

Comments
 (0)
Please sign in to comment.