Disable wifi debug logging and memory log
This commit is contained in:
parent
dcc42f6281
commit
9602ee6265
|
@ -354,14 +354,7 @@ CONFIG_ESP32_WIFI_RX_BA_WIN=6
|
|||
# CONFIG_ESP32_WIFI_NVS_ENABLED is not set
|
||||
CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN=752
|
||||
CONFIG_ESP32_WIFI_MGMT_SBUF_NUM=32
|
||||
CONFIG_ESP32_WIFI_DEBUG_LOG_ENABLE=y
|
||||
CONFIG_ESP32_WIFI_DEBUG_LOG_DEBUG=y
|
||||
# CONFIG_ESP32_WIFI_DEBUG_LOG_VERBOSE is not set
|
||||
# CONFIG_ESP32_WIFI_DEBUG_LOG_MODULE_ALL is not set
|
||||
CONFIG_ESP32_WIFI_DEBUG_LOG_MODULE_WIFI=y
|
||||
# CONFIG_ESP32_WIFI_DEBUG_LOG_MODULE_COEX is not set
|
||||
# CONFIG_ESP32_WIFI_DEBUG_LOG_MODULE_MESH is not set
|
||||
# CONFIG_ESP32_WIFI_DEBUG_LOG_SUBMODULE is not set
|
||||
# CONFIG_ESP32_WIFI_DEBUG_LOG_ENABLE is not set
|
||||
CONFIG_ESP32_WIFI_IRAM_OPT=y
|
||||
CONFIG_ESP32_WIFI_RX_IRAM_OPT=y
|
||||
# CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE is not set
|
||||
|
|
|
@ -31,9 +31,6 @@
|
|||
|
||||
#include "supervisor/shared/display.h"
|
||||
|
||||
#include "esp_log.h"
|
||||
static const char *TAG = "memory";
|
||||
|
||||
#define CIRCUITPY_SUPERVISOR_ALLOC_COUNT (12)
|
||||
|
||||
static supervisor_allocation allocations[CIRCUITPY_SUPERVISOR_ALLOC_COUNT];
|
||||
|
@ -42,7 +39,6 @@ uint32_t* low_address;
|
|||
uint32_t* high_address;
|
||||
|
||||
void memory_init(void) {
|
||||
ESP_LOGE(TAG, "memory init");
|
||||
low_address = port_heap_get_bottom();
|
||||
high_address = port_heap_get_top();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue