Skip to content

Commit c326cd2

Browse files
authored
temp Tinyusb fix
1 parent 2fa5a59 commit c326cd2

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

tools/update-components.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,23 @@ TINYUSB_REPO_DIR="$AR_COMPS/arduino_tinyusb/tinyusb"
1111
echo "Updating TinyUSB..."
1212
if [ ! -d "$TINYUSB_REPO_DIR" ]; then
1313
git clone -b master --depth 1 "$TINYUSB_REPO_URL" "$TINYUSB_REPO_DIR"
14+
# from right before Keyboard LED problem - No issue found
15+
# git checkout 69313ef45564cc8967575f47fb8c57371cbea470
16+
# from right after Keyboard LED problem - No issue found
17+
# git checkout 7fb8d3341ce2feb46b0bce0bef069d31cf080168
18+
# from feW DAYS after Keyboard LED problem COMMIT - Breaks LED
19+
# git checkout a435befcdeb6bbd40cf3ba342756f8d73f031957
20+
# Commit from April 26th, later. WORKS
21+
# git checkout ee9ad0f184752e4006ccfa6ae49b7ac83707d771
22+
# Last commit done the 26th April
23+
cd "$TINYUSB_REPO_DIR"
24+
git checkout 31b559370d29f5093979fc50de2ae415fa6612ce
25+
cd -
1426
else
1527
cd $TINYUSB_REPO_DIR
1628
git pull
1729
# -ff is for cleaning untracked files as well as submodules
1830
git clean -ffdx
31+
git checkout 31b559370d29f5093979fc50de2ae415fa6612ce
1932
fi
2033
if [ $? -ne 0 ]; then exit 1; fi

0 commit comments

Comments
 (0)