Skip to content

Just a Test - No real PR ... to be closed soon. #227

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# The following lines of boilerplate have to be in your project's
# CMakeLists in this exact order for cmake to work correctly

#### JUST A TEST... no real PR.

cmake_minimum_required(VERSION 3.5)

include($ENV{IDF_PATH}/tools/cmake/project.cmake)
Expand Down
13 changes: 13 additions & 0 deletions tools/update-components.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,19 @@ TINYUSB_REPO_URL="https://github.com/hathach/tinyusb.git"
TINYUSB_REPO_DIR="$AR_COMPS/arduino_tinyusb/tinyusb"
if [ ! -d "$TINYUSB_REPO_DIR" ]; then
git clone "$TINYUSB_REPO_URL" "$TINYUSB_REPO_DIR"
# Temporary fix given that tinyusb/master is breaking Lib Builder
cd "$TINYUSB_REPO_DIR"
# from right before Keyboard LED problem - No issue fonud
# git checkout 69313ef45564cc8967575f47fb8c57371cbea470
# from right after Keyboard LED problem - No issue fonud
# git checkout 7fb8d3341ce2feb46b0bce0bef069d31cf080168
# from feW DAYS after Keyboard LED problem COMMIT - Breaks LED
# git checkout a435befcdeb6bbd40cf3ba342756f8d73f031957
# Commit from April 26th, latter. WORKS
# git checkout ee9ad0f184752e4006ccfa6ae49b7ac83707d771
# Last commit done n the 26th April
git checkout 31b559370d29f5093979fc50de2ae415fa6612ce
cd -
else
git -C "$TINYUSB_REPO_DIR" fetch && \
git -C "$TINYUSB_REPO_DIR" pull --ff-only
Expand Down