summaryrefslogtreecommitdiff
path: root/board/discovery-stm32f072/ec.tasklist
diff options
context:
space:
mode:
authorAnton Staaf <robotboy@chromium.org>2014-07-01 09:02:28 -0700
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2014-07-09 20:30:21 +0000
commitc14b0644e356c8edacdd2a8d0a070fbbc4c23b4c (patch)
treeb2006f1358a2a6b48fd8e2e3a28c9666162e8a3d /board/discovery-stm32f072/ec.tasklist
parent0a9545cb9e48822d37073b2059848e66141803ff (diff)
downloadchrome-ec-c14b0644e356c8edacdd2a8d0a070fbbc4c23b4c.tar.gz
discovery-stm32f072: Initial working version
This version of the EC firmware just provides a console and some blinking lights for the stm32f0 discovery board. This is a convenient board to work with for peripheral bringup. Signed-off-by: Anton Staaf <robotboy@chromium.org> BRANCH=none TEST=make buildall -j Change-Id: I9ae87235e8a505d58fa7a5c996528c4dd6c3f2ac Reviewed-on: https://chromium-review.googlesource.com/207130 Reviewed-by: Bill Richardson <wfrichar@chromium.org> Commit-Queue: Anton Staaf <robotboy@chromium.org> Tested-by: Anton Staaf <robotboy@chromium.org>
Diffstat (limited to 'board/discovery-stm32f072/ec.tasklist')
-rw-r--r--board/discovery-stm32f072/ec.tasklist21
1 files changed, 21 insertions, 0 deletions
diff --git a/board/discovery-stm32f072/ec.tasklist b/board/discovery-stm32f072/ec.tasklist
new file mode 100644
index 0000000000..8ff4e8234b
--- /dev/null
+++ b/board/discovery-stm32f072/ec.tasklist
@@ -0,0 +1,21 @@
+/* Copyright (c) 2014 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.
+ */
+
+/**
+ * List of enabled tasks in the priority order
+ *
+ * The first one has the lowest priority.
+ *
+ * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and
+ * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries,
+ * where :
+ * 'n' in the name of the task
+ * 'r' in the main routine of the task
+ * 'd' in an opaque parameter passed to the routine at startup
+ * 's' is the stack size in bytes; must be a multiple of 8
+ */
+#define CONFIG_TASK_LIST \
+ TASK_ALWAYS(HOOKS, hook_task, NULL, TASK_STACK_SIZE) \
+ TASK_ALWAYS(CONSOLE, console_task, NULL, TASK_STACK_SIZE)