Skip to content

Commit

Permalink
ipc no limit
Browse files Browse the repository at this point in the history
  • Loading branch information
abonislawski committed Jun 2, 2024
1 parent f7360d8 commit eaac1dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ipc/ipc-zephyr.c
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ static int ipc_device_resume_handler(const struct device *dev, void *arg)
//schedule_task_init_edf(&ipc->ipc_task, SOF_UUID(ipc_task_uuid),
// &ipc_task_ops, ipc, 0, 0);
scheduler_twb_task_init(&ipc->ipc_task, SOF_UUID(ipc_task_uuid),
&ipc_task_ops, ipc, 0, "IPC", ZEPHYR_TWB_STACK_SIZE, CONFIG_TWB_THREAD_MEDIUM_PRIORITY, 4);
&ipc_task_ops, ipc, 0, "IPC", ZEPHYR_TWB_STACK_SIZE, CONFIG_TWB_THREAD_MEDIUM_PRIORITY, 0);

return 0;
}
Expand Down Expand Up @@ -286,7 +286,7 @@ int platform_ipc_init(struct ipc *ipc)
//schedule_task_init_edf(&ipc->ipc_task, SOF_UUID(ipc_task_uuid),
// &ipc_task_ops, ipc, 0, 0);
scheduler_twb_task_init(&ipc->ipc_task, SOF_UUID(ipc_task_uuid),
&ipc_task_ops, ipc, 0, "IPC", ZEPHYR_TWB_STACK_SIZE, CONFIG_TWB_THREAD_MEDIUM_PRIORITY, 4);
&ipc_task_ops, ipc, 0, "IPC", ZEPHYR_TWB_STACK_SIZE, CONFIG_TWB_THREAD_MEDIUM_PRIORITY, 0);

/* configure interrupt - work is done internally by Zephyr API */

Expand Down

0 comments on commit eaac1dd

Please sign in to comment.