Skip to content

Commit ec7130f

Browse files
authored
remove TinyUSB
1 parent 09aa22a commit ec7130f

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

tools/update-components.sh

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
source ./tools/config.sh
44

55
CAMERA_REPO_URL="https://github.com/espressif/esp32-camera.git"
6-
TINYUSB_REPO_URL="https://github.com/hathach/tinyusb.git"
7-
TINYUSB_REPO_DIR="$AR_COMPS/arduino_tinyusb/tinyusb"
86

97
#
108
# CLONE/UPDATE ESP32-CAMERA
@@ -26,17 +24,3 @@ if [ $? -ne 0 ]; then exit 1; fi
2624
# Arduino needs cam_hal.h from esp32-camera in include folder
2725
#
2826
cp "$AR_COMPS/esp32-camera/driver/private_include/cam_hal.h" "$AR_COMPS/esp32-camera/driver/include/"
29-
30-
#
31-
# CLONE/UPDATE TINYUSB
32-
#
33-
echo "Updating TinyUSB..."
34-
if [ ! -d "$TINYUSB_REPO_DIR" ]; then
35-
git clone -b master --depth 1 "$TINYUSB_REPO_URL" "$TINYUSB_REPO_DIR"
36-
else
37-
cd $TINYUSB_REPO_DIR
38-
git pull
39-
# -ff is for cleaning untracked files as well as submodules
40-
git clean -ffdx
41-
fi
42-
if [ $? -ne 0 ]; then exit 1; fi

0 commit comments

Comments
 (0)