Skip to content

Commit

Permalink
fix render task priority value
Browse files Browse the repository at this point in the history
  • Loading branch information
vroland committed Apr 30, 2024
1 parent 29b2b19 commit da0f202
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/render.c
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ void epd_renderer_init(enum EpdInitOptions options) {
);
assert(render_context.feed_line_buffers[i] != NULL);
RTOS_ERROR_CHECK(xTaskCreatePinnedToCore(
render_thread, "epd_prep", 1 << 12, (void*)i, configMAX_PRIORITIES,
render_thread, "epd_prep", 1 << 12, (void*)i, configMAX_PRIORITIES - 1,
&render_context.feed_tasks[i], i
));
}
Expand Down

0 comments on commit da0f202

Please sign in to comment.