File tree 2 files changed +12
-3
lines changed
examples/all-clusters-app/esp32
2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -73,3 +73,9 @@ CONFIG_BUILD_CHIP_TESTS=y
73
73
74
74
# Move functions from IRAM to flash
75
75
CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH=y
76
+
77
+ # Reduce the event loggin buffer to reduce the DRAM usage
78
+ # TODO: remove this once the underlying issue is fixed
79
+ CONFIG_EVENT_LOGGING_CRIT_BUFFER_SIZE=512
80
+ CONFIG_EVENT_LOGGING_INFO_BUFFER_SIZE=512
81
+ CONFIG_EVENT_LOGGING_DEBUG_BUFFER_SIZE=512
Original file line number Diff line number Diff line change @@ -78,13 +78,16 @@ CONFIG_BUILD_CHIP_TESTS=y
78
78
# Move functions from IRAM to flash
79
79
CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH=y
80
80
81
- # to avoid dram overflow, reduce the critical loggin buffer to 1K
82
- CONFIG_EVENT_LOGGING_CRIT_BUFFER_SIZE=1024
83
-
84
81
CONFIG_DIAG_USE_EXTERNAL_LOG_WRAP=y
85
82
86
83
# Memory Optimizations
87
84
CONFIG_NIMBLE_MAX_CONNECTIONS=1
88
85
CONFIG_BTDM_CTRL_BLE_MAX_CONN=1
89
86
CONFIG_BT_NIMBLE_ROLE_CENTRAL=n
90
87
CONFIG_BT_NIMBLE_ROLE_OBSERVER=n
88
+
89
+ # Reduce the event loggin buffer to reduce the DRAM overflow
90
+ # TODO: remove this once the underlying issue is fixed
91
+ CONFIG_EVENT_LOGGING_CRIT_BUFFER_SIZE=512
92
+ CONFIG_EVENT_LOGGING_INFO_BUFFER_SIZE=512
93
+ CONFIG_EVENT_LOGGING_DEBUG_BUFFER_SIZE=512
You can’t perform that action at this time.
0 commit comments