Skip to content

Arduino core 2.0.6 #49

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 12 commits into from
Dec 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions core_version.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define ARDUINO_ESP32_GIT_VER 0x38c3f487
#define ARDUINO_ESP32_GIT_DESC 2.0.5.3
#define ARDUINO_ESP32_RELEASE_2_0_5_3
#define ARDUINO_ESP32_RELEASE "2_0_5_3"
#define ARDUINO_ESP32_GIT_VER 0xcbaeab4e
#define ARDUINO_ESP32_GIT_DESC 2.0.6
#define ARDUINO_ESP32_RELEASE_2_0_6
#define ARDUINO_ESP32_RELEASE "2_0_6"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "framework-arduinoespressif32",
"version": "2.0.5",
"version": "2.0.6",
"description": "Tasmota Arduino Framework for the Espressif ESP32, ESP32-S and ESP32-C series of SoCs",
"keywords": [
"tasmota",
Expand Down
4 changes: 4 additions & 0 deletions tools/archive-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,14 @@ echo "Creating framework-arduinoespressif32"
cp -rf ../components/arduino arduino-esp32
rm -rf arduino-esp32/docs
rm -rf arduino-esp32/tests
rm -rf arduino-esp32/libraries/RainMaker
rm -rf arduino-esp32/libraries/Insights
rm -rf arduino-esp32/package
rm -rf arduino-esp32/tools/sdk
rm -rf arduino-esp32/tools/esptool.py
rm -rf arduino-esp32/tools/gen_esp32part.py
rm -rf arduino-esp32/tools/gen_insights_package.py
rm -rf arduino-esp32/tools/gen_insights_package.exe
rm -rf arduino-esp32/tools/platformio-build-*.py
rm -rf arduino-esp32/platform.txt
rm -rf arduino-esp32/package.json
Expand Down
2 changes: 1 addition & 1 deletion tools/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ AR_USER="tasmota"
AR_REPO="$AR_USER/arduino-esp32"

# Arduino branch to use
AR_BRANCH="master"
AR_BRANCH="work_ipv6"

AR_REPO_URL="https://github.com/$AR_REPO.git"
if [ -n $GITHUB_TOKEN ]; then
Expand Down
28 changes: 1 addition & 27 deletions tools/update-components.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@

source ./tools/config.sh

DL_REPO_URL="https://github.com/espressif/esp-dl.git"
SR_REPO_URL="https://github.com/espressif/esp-sr.git"

#
# CLONE/UPDATE ARDUINO
#

echo "Updating ESP32 Arduino..."
if [ ! -d "$AR_COMPS/arduino" ]; then
git clone $AR_REPO_URL "$AR_COMPS/arduino"
fi
Expand Down Expand Up @@ -46,27 +44,3 @@ if [ "$AR_BRANCH" ]; then
git -C "$AR_COMPS/arduino" pull --ff-only
fi
if [ $? -ne 0 ]; then exit 1; fi

#
# CLONE/UPDATE ESP-DL
#

#if [ ! -d "$AR_COMPS/esp-dl" ]; then
# git clone $DL_REPO_URL "$AR_COMPS/esp-dl"
#else
# git -C "$AR_COMPS/esp-dl" fetch && \
# git -C "$AR_COMPS/esp-dl" pull --ff-only
#fi
#if [ $? -ne 0 ]; then exit 1; fi

#
# CLONE/UPDATE ESP-SR
#

#if [ ! -d "$AR_COMPS/esp-sr" ]; then
# git clone $SR_REPO_URL "$AR_COMPS/esp-sr"
#else
# git -C "$AR_COMPS/esp-sr" fetch && \
# git -C "$AR_COMPS/esp-sr" pull --ff-only
#fi
#if [ $? -ne 0 ]; then exit 1; fi