File tree Expand file tree Collapse file tree 4 files changed +11
-8
lines changed Expand file tree Collapse file tree 4 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -21,3 +21,6 @@ version.txt
21
21
dependencies.lock
22
22
managed_components /
23
23
target /
24
+ core_version.h
25
+ package.json
26
+ release-info.txt
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ if ! [ -x "$(command -v git)" ]; then
10
10
exit 1
11
11
fi
12
12
13
- TARGET=" esp32c2 "
13
+ TARGET=" all "
14
14
BUILD_TYPE=" all"
15
15
SKIP_ENV=0
16
16
COPY_OUT=0
Original file line number Diff line number Diff line change 70
70
71
71
if [ $? -ne 0 ]; then exit 1; fi
72
72
73
- # Patch to use the framework included "framework-arduinoespressif32-libs"
74
- Echo " Patch to use the framework included arduinoespressif32-libs"
75
- cd " $AR_COMPS /arduino"
76
- patch -p1 -N -i ../patches/platformio-build.diff
77
- cd -
78
73
79
74
#
80
75
# CLONE/UPDATE ESP32-ARDUINO-LIBS
Original file line number Diff line number Diff line change 61
61
#
62
62
63
63
if [ ! -x $idf_was_installed ] || [ ! -x $commit_predefined ]; then
64
- git submodule update --recursive
64
+ git submodule update --recursive
65
65
$IDF_PATH /install.sh
66
66
67
67
# Temporarily patch the ESP32-S2 I2C LL driver to keep the clock source
68
68
cd $IDF_PATH
69
- patch -p1 -N -i ../patches/esp32s2_i2c_ll_master_init.diff
69
+ patch -p1 -N -i " $AR_ROOT /patches/esp32s2_i2c_ll_master_init.diff"
70
+ cd -
71
+
72
+ # Patch to use the framework included "framework-arduinoespressif32-libs"
73
+ cd " $AR_COMPS /arduino"
74
+ patch -p1 -N -i " $AR_ROOT /patches/platformio-build.diff"
70
75
cd -
71
76
fi
72
77
You can’t perform that action at this time.
0 commit comments