@@ -4,10 +4,8 @@ source ./tools/config.sh
4
4
5
5
CAMERA_REPO_URL=" https://github.com/espressif/esp32-camera.git"
6
6
DL_REPO_URL=" https://github.com/espressif/esp-dl.git"
7
- SR_REPO_URL=" https://github.com/espressif/esp-sr.git"
8
7
RMAKER_REPO_URL=" https://github.com/espressif/esp-rainmaker.git"
9
8
INSIGHTS_REPO_URL=" https://github.com/espressif/esp-insights.git"
10
- DSP_REPO_URL=" https://github.com/espressif/esp-dsp.git"
11
9
LITTLEFS_REPO_URL=" https://github.com/joltwallet/esp_littlefs.git"
12
10
TINYUSB_REPO_URL=" https://github.com/hathach/tinyusb.git"
13
11
@@ -97,30 +95,6 @@ if [ -f "$AR_COMPS/esp-dl/idf_component.yml" ]; then
97
95
rm -rf " $AR_COMPS /esp-dl/idf_component.yml"
98
96
fi
99
97
100
- #
101
- # CLONE/UPDATE ESP-SR
102
- #
103
- echo " Updating ESP-SR..."
104
- if [ ! -d " $AR_COMPS /esp-sr" ]; then
105
- git clone $SR_REPO_URL " $AR_COMPS /esp-sr"
106
- else
107
- git -C " $AR_COMPS /esp-sr" fetch && \
108
- git -C " $AR_COMPS /esp-sr" pull --ff-only
109
- fi
110
- if [ $? -ne 0 ]; then exit 1; fi
111
-
112
- #
113
- # CLONE/UPDATE ESP-DSP
114
- #
115
- echo " Updating ESP-DSP..."
116
- if [ ! -d " $AR_COMPS /espressif__esp-dsp" ]; then
117
- git clone $DSP_REPO_URL " $AR_COMPS /espressif__esp-dsp"
118
- else
119
- git -C " $AR_COMPS /espressif__esp-dsp" fetch && \
120
- git -C " $AR_COMPS /espressif__esp-dsp" pull --ff-only
121
- fi
122
- if [ $? -ne 0 ]; then exit 1; fi
123
-
124
98
#
125
99
# CLONE/UPDATE ESP-RAINMAKER
126
100
#
@@ -175,3 +149,29 @@ else
175
149
fi
176
150
if [ $? -ne 0 ]; then exit 1; fi
177
151
152
+ # #
153
+ # # CLONE/UPDATE ESP-SR
154
+ # #
155
+ # SR_REPO_URL="https://github.com/espressif/esp-sr.git"
156
+ # echo "Updating ESP-SR..."
157
+ # if [ ! -d "$AR_COMPS/esp-sr" ]; then
158
+ # git clone $SR_REPO_URL "$AR_COMPS/esp-sr"
159
+ # else
160
+ # git -C "$AR_COMPS/esp-sr" fetch && \
161
+ # git -C "$AR_COMPS/esp-sr" pull --ff-only
162
+ # fi
163
+ # if [ $? -ne 0 ]; then exit 1; fi
164
+
165
+ # #
166
+ # # CLONE/UPDATE ESP-DSP
167
+ # #
168
+ # DSP_REPO_URL="https://github.com/espressif/esp-dsp.git"
169
+ # echo "Updating ESP-DSP..."
170
+ # if [ ! -d "$AR_COMPS/espressif__esp-dsp" ]; then
171
+ # git clone $DSP_REPO_URL "$AR_COMPS/espressif__esp-dsp"
172
+ # else
173
+ # git -C "$AR_COMPS/espressif__esp-dsp" fetch && \
174
+ # git -C "$AR_COMPS/espressif__esp-dsp" pull --ff-only
175
+ # fi
176
+ # if [ $? -ne 0 ]; then exit 1; fi
177
+
0 commit comments