Skip to content

Commit

Permalink
reformat after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
vroland committed May 25, 2024
1 parent 713b6e4 commit b53bd38
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/render.c
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,13 @@ 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 - 1,
&render_context.feed_tasks[i], i
render_thread,
"epd_prep",
1 << 12,
(void*)i,
configMAX_PRIORITIES - 1,
&render_context.feed_tasks[i],
i
));
}
}
Expand Down

0 comments on commit b53bd38

Please sign in to comment.