summaryrefslogtreecommitdiff
path: root/board/nucleo-f412zg/ec.tasklist
diff options
context:
space:
mode:
Diffstat (limited to 'board/nucleo-f412zg/ec.tasklist')
-rw-r--r--board/nucleo-f412zg/ec.tasklist13
1 files changed, 13 insertions, 0 deletions
diff --git a/board/nucleo-f412zg/ec.tasklist b/board/nucleo-f412zg/ec.tasklist
new file mode 100644
index 0000000000..896eb2fdb3
--- /dev/null
+++ b/board/nucleo-f412zg/ec.tasklist
@@ -0,0 +1,13 @@
+/* Copyright 2020 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+/**
+ * See CONFIG_TASK_LIST in config.h for details.
+ */
+#define CONFIG_TASK_LIST \
+ TASK_ALWAYS_RO(RWSIG, rwsig_task, NULL, 1280) \
+ TASK_ALWAYS(HOOKS, hook_task, NULL, 1024) \
+ TASK_ALWAYS(HOSTCMD, host_command_task, NULL, 4096) \
+ TASK_ALWAYS(CONSOLE, console_task, NULL, CONSOLE_TASK_STACK_SIZE)