Skip to content

Commit 5502879

Browse files
me-no-devSeon RozenblumgeeksvilleatanisoftUnexpectedMaker
authoredApr 5, 2021
v2.0.0 Add support for ESP32S2 and update ESP-IDF to 4.4 (#4996)
This is very much still work in progress and much more will change before the final 2.0.0 Some APIs have changed. New libraries have been added. LittleFS included. Co-authored-by: Seon Rozenblum <[email protected]> Co-authored-by: Me No Dev <[email protected]> Co-authored-by: geeksville <[email protected]> Co-authored-by: Mike Dunston <[email protected]> Co-authored-by: Unexpected Maker <[email protected]> Co-authored-by: Seon Rozenblum <[email protected]> Co-authored-by: microDev <[email protected]> Co-authored-by: tobozo <[email protected]> Co-authored-by: bobobo1618 <[email protected]> Co-authored-by: lorol <[email protected]> Co-authored-by: geeksville <[email protected]> Co-authored-by: Limor "Ladyada" Fried <[email protected]> Co-authored-by: Sweety <[email protected]> Co-authored-by: Loick MAHIEUX <[email protected]> Co-authored-by: Larry Bernstone <[email protected]> Co-authored-by: Valerii Koval <[email protected]> Co-authored-by: 快乐的我531 <[email protected]> Co-authored-by: chegewara <[email protected]> Co-authored-by: Clemens Kirchgatterer <[email protected]> Co-authored-by: Aron Rubin <[email protected]> Co-authored-by: Pete Lewis <[email protected]>
1 parent 46d5afb commit 5502879

File tree

5,209 files changed

+826348
-322804
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,209 files changed

+826348
-322804
lines changed
 

‎.github/scripts/check-cmakelists.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ git submodule update --init --recursive
1515
REPO_SRCS=`find cores/esp32/ libraries/ -name 'examples' -prune -o -name '*.c' -print -o -name '*.cpp' -print | sort`
1616

1717
# find all source files named in CMakeLists.txt COMPONENT_SRCS
18-
CMAKE_SRCS=`cmake --trace-expand -C CMakeLists.txt 2>&1 | grep COMPONENT_SRCS | sed 's/.\+COMPONENT_SRCS //' | sed 's/ )//' | tr ' ;' '\n' | sort`
18+
CMAKE_SRCS=`cmake --trace-expand -C CMakeLists.txt 2>&1 | grep set\(srcs | cut -d'(' -f3 | sed 's/ )//' | sed 's/srcs //' | tr ' ;' '\n' | sort`
1919

20-
if ! diff -u0 --label "Repo Files" --label "COMPONENT_SRCS" <(echo "$REPO_SRCS") <(echo "$CMAKE_SRCS"); then
20+
if ! diff -u0 --label "Repo Files" --label "srcs" <(echo "$REPO_SRCS") <(echo "$CMAKE_SRCS"); then
2121
echo "Source files in repo (-) and source files in CMakeLists.txt (+) don't match"
2222
echo "Edit CMakeLists.txt as appropriate to add/remove source files from COMPONENT_SRCS"
2323
exit 1

‎.github/scripts/install-arduino-core-esp32.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ if [ ! -d "$ARDUINO_ESP32_PATH" ]; then
2323
git clone https://github.com/espressif/arduino-esp32.git esp32 > /dev/null 2>&1
2424
fi
2525

26-
echo "Updating Submodules ..."
26+
#echo "Updating Submodules ..."
2727
cd esp32
28-
git submodule update --init --recursive > /dev/null 2>&1
28+
#git submodule update --init --recursive > /dev/null 2>&1
2929

3030
echo "Installing Platform Tools ..."
3131
cd tools && python get.py

0 commit comments

Comments
 (0)