File tree Expand file tree Collapse file tree 4 files changed +7
-29
lines changed Expand file tree Collapse file tree 4 files changed +7
-29
lines changed Original file line number Diff line number Diff line change 1
- # Tasmota ESP32 Arduino Lib Builder [ ![ ESP32 builder] ( https://github.com/Jason2866/esp32-arduino-lib-builder/actions/workflows/push.yml/badge.svg )] ( https://github.com/Jason2866/esp32-arduino-lib-builder/actions/workflows/push.yml )
1
+ # Tasmota ESP32 Arduino Lib Builder [ ![ ESP32 builder] ( https://github.com/Jason2866/esp32-arduino-lib-builder/actions/workflows/push.yml/badge.svg )] ( https://github.com/Jason2866/esp32-arduino-lib-builder/actions/workflows/push.yml ) [ ![ GitHub Releases ] ( https://img.shields.io/github/downloads/Jason2866/esp32-arduino-lib-builder/total?label=downloads )] ( https://github.com/Jason2866/esp32-arduino-lib-builder/releases/latest )
2
2
3
3
This repository contains the scripts that produce the libraries included with Tasmota esp32-arduino.
4
4
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " framework-arduinoespressif32" ,
3
- "version" : " 2.0.5 " ,
3
+ "version" : " 2.0.6 " ,
4
4
"description" : " Tasmota Arduino Framework for the Espressif ESP32, ESP32-S and ESP32-C series of SoCs" ,
5
5
"keywords" : [
6
6
" tasmota" ,
Original file line number Diff line number Diff line change @@ -16,10 +16,14 @@ echo "Creating framework-arduinoespressif32-solo1"
16
16
cp -rf ../components/arduino arduino-esp32
17
17
rm -rf arduino-esp32/docs
18
18
rm -rf arduino-esp32/tests
19
+ rm -rf arduino-esp32/libraries/RainMaker
20
+ rm -rf arduino-esp32/libraries/Insights
19
21
rm -rf arduino-esp32/package
20
22
rm -rf arduino-esp32/tools/sdk
21
23
rm -rf arduino-esp32/tools/esptool.py
22
24
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
23
27
rm -rf arduino-esp32/tools/platformio-build-* .py
24
28
rm -rf arduino-esp32/platform.txt
25
29
rm -rf arduino-esp32/package.json
Original file line number Diff line number Diff line change 2
2
3
3
source ./tools/config.sh
4
4
5
- DL_REPO_URL=" https://github.com/espressif/esp-dl.git"
6
- SR_REPO_URL=" https://github.com/espressif/esp-sr.git"
7
-
8
5
#
9
6
# CLONE/UPDATE ARDUINO
10
7
#
11
8
9
+ echo " Updating ESP32 Arduino..."
12
10
if [ ! -d " $AR_COMPS /arduino" ]; then
13
11
git clone $AR_REPO_URL " $AR_COMPS /arduino"
14
12
fi
@@ -46,27 +44,3 @@ if [ "$AR_BRANCH" ]; then
46
44
git -C " $AR_COMPS /arduino" pull --ff-only
47
45
fi
48
46
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
You can’t perform that action at this time.
0 commit comments