diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2020-08-18 14:02:59 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2020-08-19 14:23:28 -0700 |
| commit | 9602ee6265ff20f6e075753bbb105578f680d519 (patch) | |
| tree | fb311eca03ab924b2c686bf51b1c584b849ec475 /supervisor | |
| parent | dcc42f6281ad928c6218acaab8e72bdf52038851 (diff) | |
Disable wifi debug logging and memory log
Diffstat (limited to 'supervisor')
| -rwxr-xr-x | supervisor/shared/memory.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/supervisor/shared/memory.c b/supervisor/shared/memory.c index 79bdeef9d..8ae8a1699 100755 --- a/supervisor/shared/memory.c +++ b/supervisor/shared/memory.c @@ -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(); } |
