diff options
-rw-r--r-- | zephyr/projects/volteer/include/shimmed_tasks.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/zephyr/projects/volteer/include/shimmed_tasks.h b/zephyr/projects/volteer/include/shimmed_tasks.h index af6ef4d20b..d20fe1f74e 100644 --- a/zephyr/projects/volteer/include/shimmed_tasks.h +++ b/zephyr/projects/volteer/include/shimmed_tasks.h @@ -10,13 +10,15 @@ * Manually define these HAS_TASK_* defines. There is a build time assert * to at least verify we have the minimum set defined correctly. */ +#define HAS_TASK_HOSTCMD 1 #define HAS_TASK_KEYPROTO 1 /* * Highest priority on bottom -- same as in platform/ec. List of CROS_EC_TASK * items. See CONFIG_TASK_LIST in platform/ec's config.h for more informaiton */ -#define CROS_EC_TASK_LIST \ +#define CROS_EC_TASK_LIST \ + CROS_EC_TASK(HOSTCMD, host_command_task, 0, 512) \ CROS_EC_TASK(KEYPROTO, keyboard_protocol_task, 0, 512) #endif /* __CROS_EC_SHIMMED_TASKS_H */ |