diff --git a/CMakeLists.txt b/CMakeLists.txt index 1b0fca085..bbb2ed7cd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/tools/update-components.sh b/tools/update-components.sh index 298783c74..81752ab6a 100755 --- a/tools/update-components.sh +++ b/tools/update-components.sh @@ -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