summaryrefslogtreecommitdiff
path: root/board/nucleo-h743zi/ec.tasklist
diff options
context:
space:
mode:
authorYicheng Li <yichengli@chromium.org>2020-01-16 17:23:50 -0800
committerCommit Bot <commit-bot@chromium.org>2020-02-05 01:20:42 +0000
commitc7313be9af31a4a2cd833b2e2440404aab52c04e (patch)
treeb4aea0f41b0d3dabd7697b01a18b52ee785c5668 /board/nucleo-h743zi/ec.tasklist
parent6d413f37a1224aa53f76b62f4139b6106e661737 (diff)
downloadchrome-ec-c7313be9af31a4a2cd833b2e2440404aab52c04e.tar.gz
stm32: Enlarge console task stack for testing
For on-device unit tests, we use the console to "runtest" and view results. A small console size would result in console stack overflow after the test finishes. Use a larger console stack if it's a test build. BRANCH=None BUG=b:146059307 TEST=make BOARD=nucleo-h743zi tests -j (Flash the build/nucleo-h743zi/test-aes.bin) (Connect to UART console) runtest (Repeat for test-sha256.bin and test-sha256_unrolled.bin) Change-Id: I5c48ae10f5808ed2d3854fdc72275a3a416cf76d Signed-off-by: Yicheng Li <yichengli@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2006709 Reviewed-by: Tom Hughes <tomhughes@chromium.org>
Diffstat (limited to 'board/nucleo-h743zi/ec.tasklist')
-rw-r--r--board/nucleo-h743zi/ec.tasklist2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/nucleo-h743zi/ec.tasklist b/board/nucleo-h743zi/ec.tasklist
index ec42cd45eb..4437e9b38c 100644
--- a/board/nucleo-h743zi/ec.tasklist
+++ b/board/nucleo-h743zi/ec.tasklist
@@ -10,4 +10,4 @@
TASK_ALWAYS_RO(RWSIG, rwsig_task, NULL, 1280) \
TASK_ALWAYS(HOOKS, hook_task, NULL, 1024) \
TASK_NOTEST(HOSTCMD, host_command_task, NULL, TASK_STACK_SIZE) \
- TASK_ALWAYS(CONSOLE, console_task, NULL, LARGER_TASK_STACK_SIZE)
+ TASK_ALWAYS(CONSOLE, console_task, NULL, CONSOLE_TASK_STACK_SIZE)