summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--board/cr50/board.h6
-rw-r--r--board/cr50/ec.tasklist1
2 files changed, 4 insertions, 3 deletions
diff --git a/board/cr50/board.h b/board/cr50/board.h
index fa0d5f7010..2263f7fa9c 100644
--- a/board/cr50/board.h
+++ b/board/cr50/board.h
@@ -19,8 +19,8 @@
/* USB configuration */
#define CONFIG_USB
-#define CONFIG_USB_CONSOLE
#define CONFIG_USB_HID
+#define CONFIG_USB_BLOB
#define CONFIG_USB_PID 0x5014
@@ -60,13 +60,13 @@ enum usb_strings {
#endif /* !__ASSEMBLER__ */
/* USB interface indexes (use define rather than enum to expand them) */
-#define USB_IFACE_CONSOLE 0
+#define USB_IFACE_BLOB 0
#define USB_IFACE_HID 1
#define USB_IFACE_COUNT 2
/* USB endpoint indexes (use define rather than enum to expand them) */
#define USB_EP_CONTROL 0
-#define USB_EP_CONSOLE 1
+#define USB_EP_BLOB 1
#define USB_EP_HID 2
#define USB_EP_COUNT 3
diff --git a/board/cr50/ec.tasklist b/board/cr50/ec.tasklist
index 8ff4e8234b..961b7750bd 100644
--- a/board/cr50/ec.tasklist
+++ b/board/cr50/ec.tasklist
@@ -18,4 +18,5 @@
*/
#define CONFIG_TASK_LIST \
TASK_ALWAYS(HOOKS, hook_task, NULL, TASK_STACK_SIZE) \
+ TASK_ALWAYS(BLOB, blob_task, NULL, TASK_STACK_SIZE) \
TASK_ALWAYS(CONSOLE, console_task, NULL, TASK_STACK_SIZE)