Disable wifi debug logging and memory log

This commit is contained in:
Scott Shawcroft 2020-08-18 14:02:59 -07:00
parent dcc42f6281
commit 9602ee6265
No known key found for this signature in database
GPG Key ID: 0DFD512649C052DA
2 changed files with 1 additions and 12 deletions

View File

@ -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

View File

@ -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();
}