Skip to content
Snippets Groups Projects
Commit 5cc4406e authored by q3k's avatar q3k
Browse files

st3m/gfx: bump up rast stack size (needed for scope)

parent 0b53d8a5
No related branches found
No related tags found
No related merge requests found
......@@ -239,7 +239,7 @@ void st3m_gfx_init(void) {
assert(res == pdPASS);
// Start rast.
res = xTaskCreate(st3m_gfx_rast_task, "rast", 4096, NULL, ESP_TASK_PRIO_MIN+1, &rast_task);
res = xTaskCreate(st3m_gfx_rast_task, "rast", 8192, NULL, ESP_TASK_PRIO_MIN+1, &rast_task);
assert(res == pdPASS);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment