Skip to content

Commit 3cec32d

Browse files
authored
Arduino core 2.0.6
1 parent bf7012b commit 3cec32d

File tree

4 files changed

+7
-29
lines changed

4 files changed

+7
-29
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "framework-arduinoespressif32",
3-
"version": "2.0.5",
3+
"version": "2.0.6",
44
"description": "Tasmota Arduino Framework for the Espressif ESP32, ESP32-S and ESP32-C series of SoCs",
55
"keywords": [
66
"tasmota",

tools/archive-build.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,14 @@ echo "Creating framework-arduinoespressif32"
1616
cp -rf ../components/arduino arduino-esp32
1717
rm -rf arduino-esp32/docs
1818
rm -rf arduino-esp32/tests
19+
rm -rf arduino-esp32/libraries/RainMaker
20+
rm -rf arduino-esp32/libraries/Insights
1921
rm -rf arduino-esp32/package
2022
rm -rf arduino-esp32/tools/sdk
2123
rm -rf arduino-esp32/tools/esptool.py
2224
rm -rf arduino-esp32/tools/gen_esp32part.py
25+
rm -rf arduino-esp32/tools/gen_insights_package.py
26+
rm -rf arduino-esp32/tools/gen_insights_package.exe
2327
rm -rf arduino-esp32/tools/platformio-build-*.py
2428
rm -rf arduino-esp32/platform.txt
2529
rm -rf arduino-esp32/package.json

tools/config.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ AR_USER="tasmota"
3434
AR_REPO="$AR_USER/arduino-esp32"
3535

3636
# Arduino branch to use
37-
AR_BRANCH="master"
37+
AR_BRANCH="work_ipv6"
3838

3939
AR_REPO_URL="https://github.com/$AR_REPO.git"
4040
if [ -n $GITHUB_TOKEN ]; then

tools/update-components.sh

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@
22

33
source ./tools/config.sh
44

5-
DL_REPO_URL="https://github.com/espressif/esp-dl.git"
6-
SR_REPO_URL="https://github.com/espressif/esp-sr.git"
7-
85
#
96
# CLONE/UPDATE ARDUINO
107
#
118

9+
echo "Updating ESP32 Arduino..."
1210
if [ ! -d "$AR_COMPS/arduino" ]; then
1311
git clone $AR_REPO_URL "$AR_COMPS/arduino"
1412
fi
@@ -46,27 +44,3 @@ if [ "$AR_BRANCH" ]; then
4644
git -C "$AR_COMPS/arduino" pull --ff-only
4745
fi
4846
if [ $? -ne 0 ]; then exit 1; fi
49-
50-
#
51-
# CLONE/UPDATE ESP-DL
52-
#
53-
54-
#if [ ! -d "$AR_COMPS/esp-dl" ]; then
55-
# git clone $DL_REPO_URL "$AR_COMPS/esp-dl"
56-
#else
57-
# git -C "$AR_COMPS/esp-dl" fetch && \
58-
# git -C "$AR_COMPS/esp-dl" pull --ff-only
59-
#fi
60-
#if [ $? -ne 0 ]; then exit 1; fi
61-
62-
#
63-
# CLONE/UPDATE ESP-SR
64-
#
65-
66-
#if [ ! -d "$AR_COMPS/esp-sr" ]; then
67-
# git clone $SR_REPO_URL "$AR_COMPS/esp-sr"
68-
#else
69-
# git -C "$AR_COMPS/esp-sr" fetch && \
70-
# git -C "$AR_COMPS/esp-sr" pull --ff-only
71-
#fi
72-
#if [ $? -ne 0 ]; then exit 1; fi

0 commit comments

Comments
 (0)