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 <cheyuw@google.com>
Reviewed-on: https://chromium-review.googlesource.com/604850
Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
This commit is contained in:
Che-yu Wu
2017-08-08 08:06:59 +08:00
committed by chrome-bot
parent 640e0d1576
commit 02aa4ee1e5

View File

@@ -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)