File tree Expand file tree Collapse file tree 2 files changed +1
-12
lines changed Expand file tree Collapse file tree 2 files changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -354,14 +354,7 @@ CONFIG_ESP32_WIFI_RX_BA_WIN=6
354
354
# CONFIG_ESP32_WIFI_NVS_ENABLED is not set
355
355
CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN=752
356
356
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
365
358
CONFIG_ESP32_WIFI_IRAM_OPT=y
366
359
CONFIG_ESP32_WIFI_RX_IRAM_OPT=y
367
360
# CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE is not set
Original file line number Diff line number Diff line change 31
31
32
32
#include "supervisor/shared/display.h"
33
33
34
- #include "esp_log.h"
35
- static const char * TAG = "memory" ;
36
-
37
34
#define CIRCUITPY_SUPERVISOR_ALLOC_COUNT (12)
38
35
39
36
static supervisor_allocation allocations [CIRCUITPY_SUPERVISOR_ALLOC_COUNT ];
@@ -42,7 +39,6 @@ uint32_t* low_address;
42
39
uint32_t * high_address ;
43
40
44
41
void memory_init (void ) {
45
- ESP_LOGE (TAG , "memory init" );
46
42
low_address = port_heap_get_bottom ();
47
43
high_address = port_heap_get_top ();
48
44
}
You can’t perform that action at this time.
0 commit comments