summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRong Chang <rongchang@chromium.org>2015-06-17 21:14:25 +0800
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-06-18 08:08:14 +0000
commit54097db36ddc667d3c662ec5631f6204b5ffb23c (patch)
tree7ac7288a8829528309c07e41ab25117f4f26b616
parent2d35daa430b96dc8309fdf9f1911e303246fdd10 (diff)
downloadchrome-ec-54097db36ddc667d3c662ec5631f6204b5ffb23c.tar.gz
oak: increase console task stack size
Console command 'batter' reaches STM32F0's TASK_STACK_SIZE(488). Oak needs a larger stack in development stage. BRANCH=none BUG=none TEST=manual load on oak and type 'battery' in console. Change-Id: Iab3d0bd23837932acb873ecdeb194af74f10f29c Signed-off-by: Rong Chang <rongchang@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/277979 Reviewed-by: Alec Berg <alecaberg@chromium.org>
-rw-r--r--board/oak/ec.tasklist2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/oak/ec.tasklist b/board/oak/ec.tasklist
index 35b64ed622..2b74f6da5e 100644
--- a/board/oak/ec.tasklist
+++ b/board/oak/ec.tasklist
@@ -22,7 +22,7 @@
TASK_NOTEST(CHIPSET, chipset_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_NOTEST(PDCMD, pd_command_task, NULL, TASK_STACK_SIZE) \
TASK_ALWAYS(HOSTCMD, host_command_task, NULL, TASK_STACK_SIZE) \
- TASK_ALWAYS(CONSOLE, console_task, NULL, TASK_STACK_SIZE) \
+ TASK_ALWAYS(CONSOLE, console_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, TASK_STACK_SIZE) \
TASK_ALWAYS(PD_C0, pd_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_ALWAYS(PD_C1, pd_task, NULL, LARGER_TASK_STACK_SIZE)