Skip to content
Snippets Groups Projects
Verified Commit 921ba019 authored by rahix's avatar rahix
Browse files

fix(epicardium): Raise lifecycle task priority


The lifecycle task needs higher priority than the API to ensure it can
win the `api_mutex`, even during a busy payload.

This commit is potentially a fix for #94.

Signed-off-by: default avatarRahix <rahix@rahix.de>
parent ae2a004d
No related branches found
No related tags found
No related merge requests found
......@@ -91,7 +91,7 @@ int main(void)
(const char *)"Lifecycle",
configMINIMAL_STACK_SIZE * 4,
NULL,
tskIDLE_PRIORITY + 1,
tskIDLE_PRIORITY + 3,
NULL) != pdPASS) {
LOG_CRIT("startup", "Failed to create %s task!", "Lifecycle");
abort();
......
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