File tree Expand file tree Collapse file tree 4 files changed +15
-4
lines changed
Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ HASH_CMD="shasum -a 256"
4747# Install dependencies
4848# --------------------------------------------------------------------------------
4949
50- ESP_IDF_VERSION=v3.0.4
50+ ESP_IDF_VERSION=release/ v3.3
5151if test " ${TRAVIS_OS_NAME} " = " linux" ; then
5252 XTENSA_TOOL_CHAIN_URL=https://dl.espressif.com/dl/xtensa-esp32-elf-linux64-1.22.0-80-g6c4433a-5.2.0.tar.gz
5353 XTENSA_TOOL_CHAIN_HASH=3fe96c151d46c1d4e5edc6ed690851b8e53634041114bad04729bc16b0445156
Original file line number Diff line number Diff line change @@ -53,8 +53,12 @@ COMPONENTS := app_trace \
5353 console \
5454 cxx \
5555 driver \
56+ efuse \
5657 esp32 \
5758 esp_adc_cal \
59+ esp_event \
60+ esp_ringbuf \
61+ espcoredump \
5862 esptool_py \
5963 ethernet \
6064 expat \
@@ -73,6 +77,7 @@ COMPONENTS := app_trace \
7377 pthread \
7478 QRCode \
7579 sdmmc \
80+ smartconfig_ack \
7681 soc \
7782 spidriver \
7883 spi_flash \
Original file line number Diff line number Diff line change @@ -17,8 +17,11 @@ CONFIG_PARTITION_TABLE_FILENAME="partitions.csv"
1717CONFIG_APP_OFFSET=0x10000
1818
1919# Bump the stack size of the Weave task to accommodate extra stack useage due to
20- # debugging.
21- CONFIG_WEAVE_TASK_STACK_SIZE=5120
20+ # debugging. When using ESP-IDF3.3, there exists a callpath that when reached
21+ # DataManagement_Current::PrettyPrintWDM, ~4400B stack space is used (default
22+ # stack size is 4608B). And then vsnprintf called by PerttyPrintWDM will cost
23+ # another 1KB, a 5120B stack space in previous versions will overflow.
24+ CONFIG_WEAVE_TASK_STACK_SIZE=6144
2225
2326# Default to 921600 baud when flashing and monitoring device
2427CONFIG_ESPTOOLPY_BAUD_921600B=y
@@ -46,3 +49,6 @@ CONFIG_LOG_PROVISIONING_HASH=y
4649# purposes.
4750CONFIG_DEFAULT_INCOMING_CONNECTION_IDLE_TIMEOUT=0
4851
52+ # According to partitions.csv, we need 4MB or larger flash
53+ CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
54+ CONFIG_ESPTOOLPY_FLASHSIZE="4MB"
You can’t perform that action at this time.
0 commit comments