Skip to content

Commit 9602ee6

Browse files
committed
Disable wifi debug logging and memory log
1 parent dcc42f6 commit 9602ee6

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

ports/esp32s2/sdkconfig.defaults

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -354,14 +354,7 @@ CONFIG_ESP32_WIFI_RX_BA_WIN=6
354354
# CONFIG_ESP32_WIFI_NVS_ENABLED is not set
355355
CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN=752
356356
CONFIG_ESP32_WIFI_MGMT_SBUF_NUM=32
357-
CONFIG_ESP32_WIFI_DEBUG_LOG_ENABLE=y
358-
CONFIG_ESP32_WIFI_DEBUG_LOG_DEBUG=y
359-
# CONFIG_ESP32_WIFI_DEBUG_LOG_VERBOSE is not set
360-
# CONFIG_ESP32_WIFI_DEBUG_LOG_MODULE_ALL is not set
361-
CONFIG_ESP32_WIFI_DEBUG_LOG_MODULE_WIFI=y
362-
# CONFIG_ESP32_WIFI_DEBUG_LOG_MODULE_COEX is not set
363-
# CONFIG_ESP32_WIFI_DEBUG_LOG_MODULE_MESH is not set
364-
# CONFIG_ESP32_WIFI_DEBUG_LOG_SUBMODULE is not set
357+
# CONFIG_ESP32_WIFI_DEBUG_LOG_ENABLE is not set
365358
CONFIG_ESP32_WIFI_IRAM_OPT=y
366359
CONFIG_ESP32_WIFI_RX_IRAM_OPT=y
367360
# CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE is not set

supervisor/shared/memory.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@
3131

3232
#include "supervisor/shared/display.h"
3333

34-
#include "esp_log.h"
35-
static const char *TAG = "memory";
36-
3734
#define CIRCUITPY_SUPERVISOR_ALLOC_COUNT (12)
3835

3936
static supervisor_allocation allocations[CIRCUITPY_SUPERVISOR_ALLOC_COUNT];
@@ -42,7 +39,6 @@ uint32_t* low_address;
4239
uint32_t* high_address;
4340

4441
void memory_init(void) {
45-
ESP_LOGE(TAG, "memory init");
4642
low_address = port_heap_get_bottom();
4743
high_address = port_heap_get_top();
4844
}

0 commit comments

Comments
 (0)