Skip to content

update to latest #19

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

Merged
merged 26 commits into from
Mar 10, 2022
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
DSP enable
  • Loading branch information
Jason2866 authored Mar 10, 2022
commit 0c1ab8e367e0106e3abb7556b345f3f15ab45b66
14 changes: 7 additions & 7 deletions tools/update-components.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,17 +104,17 @@ if [ $? -ne 0 ]; then exit 1; fi
# CLONE/UPDATE ESP-DSP
#

#if [ ! -d "$AR_COMPS/esp-dsp" ]; then
# git clone $DSP_REPO_URL "$AR_COMPS/esp-dsp"
if [ ! -d "$AR_COMPS/esp-dsp" ]; then
git clone $DSP_REPO_URL "$AR_COMPS/esp-dsp"
# cml=`cat "$AR_COMPS/esp-dsp/CMakeLists.txt"`
# echo "if(IDF_TARGET STREQUAL \"esp32\" OR IDF_TARGET STREQUAL \"esp32s2\" OR IDF_TARGET STREQUAL \"esp32s3\")" > "$AR_COMPS/esp-dsp/CMakeLists.txt"
# echo "$cml" >> "$AR_COMPS/esp-dsp/CMakeLists.txt"
# echo "endif()" >> "$AR_COMPS/esp-dsp/CMakeLists.txt"
#else
# git -C "$AR_COMPS/esp-dsp" fetch && \
# git -C "$AR_COMPS/esp-dsp" pull --ff-only
#fi
#if [ $? -ne 0 ]; then exit 1; fi
else
git -C "$AR_COMPS/esp-dsp" fetch && \
git -C "$AR_COMPS/esp-dsp" pull --ff-only
fi
if [ $? -ne 0 ]; then exit 1; fi

#
# CLONE/UPDATE TINYUSB
Expand Down