Skip to content

Commit 27ddd00

Browse files
committed
Disable coredump to flash
1 parent fb0f394 commit 27ddd00

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
cmake_minimum_required(VERSION 3.5)
44

55
set(RMAKER_PATH ${CMAKE_SOURCE_DIR}/components/esp-rainmaker)
6-
set(EXTRA_COMPONENT_DIRS ${RMAKER_PATH}/components/esp-insights/components ${RMAKER_PATH}/components ${CMAKE_SOURCE_DIR}/components/tflite-micro/components)
6+
set(INSIGHTS_PATH ${RMAKER_PATH}/components/esp-insights)
7+
set(TFLITE_PATH ${CMAKE_SOURCE_DIR}/components/tflite-micro)
8+
9+
set(EXTRA_COMPONENT_DIRS ${INSIGHTS_PATH}/components ${RMAKER_PATH}/components ${TFLITE_PATH}/components)
710

811
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
912
project(arduino-lib-builder)

configs/defconfig.common

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ CONFIG_LWIP_IPV6_AUTOCONFIG=y
7676
CONFIG_ESP_RMAKER_SKIP_VERSION_CHECK=y
7777
CONFIG_ESP_RMAKER_USER_ID_CHECK=y
7878
CONFIG_ESP_INSIGHTS_ENABLED=y
79-
CONFIG_ESP_INSIGHTS_COREDUMP_ENABLE=y
79+
CONFIG_ESP_INSIGHTS_COREDUMP_ENABLE=n
8080
CONFIG_ESP_INSIGHTS_TRANSPORT_HTTPS=y
8181
CONFIG_DIAG_LOG_DROP_WIFI_LOGS=y
8282
CONFIG_DIAG_ENABLE_METRICS=y
@@ -85,7 +85,7 @@ CONFIG_DIAG_ENABLE_WIFI_METRICS=y
8585
CONFIG_DIAG_ENABLE_VARIABLES=y
8686
CONFIG_DIAG_ENABLE_NETWORK_VARIABLES=y
8787
CONFIG_ESP_COREDUMP_ENABLE=y
88-
CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH=y
88+
CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH=n
8989
CONFIG_ESP_COREDUMP_DATA_FORMAT_ELF=y
9090
CONFIG_ESP_COREDUMP_CHECKSUM_CRC32=y
9191
CONFIG_ESP_COREDUMP_MAX_TASKS_NUM=64

0 commit comments

Comments
 (0)