File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ HASH_CMD="shasum -a 256"
47
47
# Install dependencies
48
48
# --------------------------------------------------------------------------------
49
49
50
- ESP_IDF_VERSION=v3.0.4
50
+ ESP_IDF_VERSION=v3.3.2
51
51
if test " ${TRAVIS_OS_NAME} " = " linux" ; then
52
52
XTENSA_TOOL_CHAIN_URL=https://dl.espressif.com/dl/xtensa-esp32-elf-linux64-1.22.0-80-g6c4433a-5.2.0.tar.gz
53
53
XTENSA_TOOL_CHAIN_HASH=3fe96c151d46c1d4e5edc6ed690851b8e53634041114bad04729bc16b0445156
Original file line number Diff line number Diff line change @@ -53,8 +53,12 @@ COMPONENTS := app_trace \
53
53
console \
54
54
cxx \
55
55
driver \
56
+ efuse \
56
57
esp32 \
57
58
esp_adc_cal \
59
+ esp_event \
60
+ esp_ringbuf \
61
+ espcoredump \
58
62
esptool_py \
59
63
ethernet \
60
64
expat \
@@ -73,6 +77,7 @@ COMPONENTS := app_trace \
73
77
pthread \
74
78
QRCode \
75
79
sdmmc \
80
+ smartconfig_ack \
76
81
soc \
77
82
spidriver \
78
83
spi_flash \
Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ CONFIG_APP_OFFSET=0x10000
18
18
19
19
# Bump the stack size of the Weave task to accommodate extra stack useage due to
20
20
# debugging.
21
- CONFIG_WEAVE_TASK_STACK_SIZE=5120
21
+ # 8192 is requied to avoid stackoverflow
22
+ CONFIG_WEAVE_TASK_STACK_SIZE=8192
22
23
23
24
# Default to 921600 baud when flashing and monitoring device
24
25
CONFIG_ESPTOOLPY_BAUD_921600B=y
@@ -46,3 +47,6 @@ CONFIG_LOG_PROVISIONING_HASH=y
46
47
# purposes.
47
48
CONFIG_DEFAULT_INCOMING_CONNECTION_IDLE_TIMEOUT=0
48
49
50
+ # Need 4MB or larger flash
51
+ CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
52
+ CONFIG_ESPTOOLPY_FLASHSIZE="4MB"
You can’t perform that action at this time.
0 commit comments