You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 10, 2022. It is now read-only.
Hi All:
I open the wifi(AP) as below:
wifi_init_softap();
vTaskDelay(100 / portTICK_PERIOD_MS);
http_server_init();
Then I created the qr_reco task as below:
xTaskCreate( qr_recognize, "qr_recognize", 102460, &camera_config, 8, &xTask4);
But the task responsed "-1", maybe not enough memory. The depth is "102460", but when I created a task which depth is "1024*20", it could work well. Does the wifi cost lots of memory? So what can I do next ? Thanks ! :D