summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--board/prism/board.h4
-rw-r--r--board/prism/ec.tasklist4
2 files changed, 6 insertions, 2 deletions
diff --git a/board/prism/board.h b/board/prism/board.h
index 9cca111ba2..49a08d73e2 100644
--- a/board/prism/board.h
+++ b/board/prism/board.h
@@ -102,6 +102,10 @@
#undef CONFIG_UART_CONSOLE
#define CONFIG_UART_CONSOLE 1
+#undef CONFIG_UART_TX_BUF_SIZE
+/* Has to be power of two */
+#define CONFIG_UART_TX_BUF_SIZE 4096
+
/* Optional features */
#define CONFIG_LOW_POWER_IDLE
#define CONFIG_LTO
diff --git a/board/prism/ec.tasklist b/board/prism/ec.tasklist
index aaf9b15a5e..501be4a1db 100644
--- a/board/prism/ec.tasklist
+++ b/board/prism/ec.tasklist
@@ -8,7 +8,7 @@
*/
#define CONFIG_TASK_LIST \
TASK_ALWAYS_RO(RWSIG, rwsig_task, NULL, 1280) \
- TASK_ALWAYS (HOOKS, hook_task, NULL, 2048) \
+ TASK_ALWAYS (HOOKS, hook_task, NULL, 1024) \
TASK_ALWAYS_RW(RGBKBD, rgbkbd_task, NULL, 2048) \
- TASK_ALWAYS_RW(HOSTCMD, host_command_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS_RW(HOSTCMD, host_command_task, NULL, 1024) \
TASK_ALWAYS (CONSOLE, console_task, NULL, 1024)