From 02aa4ee1e5d73d65b9aae5915e284a2ff6ceadc6 Mon Sep 17 00:00:00 2001 From: Che-yu Wu Date: Tue, 8 Aug 2017 08:06:59 +0800 Subject: chip/host/config_chip: Fix TASK_STACK_SIZE of the host board. Define TASK_STACK_SIZE as standard value 512 for the host board. BUG=chromium:752923 BRANCH=none TEST=make runtests Change-Id: I3e5120847e9b14fbf96d00c428b2db9d59d38fe2 Signed-off-by: Che-yu Wu Reviewed-on: https://chromium-review.googlesource.com/604850 Reviewed-by: Vincent Palatin --- chip/host/config_chip.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'chip/host/config_chip.h') diff --git a/chip/host/config_chip.h b/chip/host/config_chip.h index 37ea9a9f44..dceb685ed5 100644 --- a/chip/host/config_chip.h +++ b/chip/host/config_chip.h @@ -32,6 +32,9 @@ extern char __host_flash[CONFIG_FLASH_SIZE]; /* Compute the rest of the flash params from these */ #include "config_std_internal_flash.h" +/* Default task stack size */ +#define TASK_STACK_SIZE 512 + /* Interval between HOOK_TICK notifications */ #define HOOK_TICK_INTERVAL_MS 250 #define HOOK_TICK_INTERVAL (HOOK_TICK_INTERVAL_MS * MSEC) -- cgit v1.2.1