1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| #include <Arduino.h>
|
| #include <modules/my_task_creator/TaskCreator.h>
|
| TaskCreator mTask;
| void setup()
| {
| mTask.Init();
| }
|
| void loop()
| {
| vTaskDelay(10000);
| log_v("Free mem:%ld",heap_caps_get_minimum_free_size(MALLOC_CAP_INTERNAL));
| }
|
|