We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75c6956 commit 30ee991Copy full SHA for 30ee991
firmware/main/main.c
@@ -13,6 +13,7 @@
13
#include "nvs.h"
14
#include "micropython_main.h"
15
16
+#define TAG "MAIN"
17
18
extern void micropython_entry(void);
19
@@ -36,7 +37,7 @@ void nvs_write_zip_status(bool status)
36
37
void app_main()
38
{
39
size_t mp_task_heap_size = mp_preallocate_heap();
- ESP_LOGI("MP", "Heap size: %d", mp_task_heap_size);
40
+ ESP_LOGI(TAG, "Heap size: %d", mp_task_heap_size);
41
42
// logo();
43
// bool is_first_boot = nvs_init();
0 commit comments