summaryrefslogtreecommitdiff
path: root/include/usb_console.h
diff options
context:
space:
mode:
authorNamyoon Woo <namyoon@chromium.org>2019-08-08 09:46:43 -0700
committerCommit Bot <commit-bot@chromium.org>2019-09-19 03:03:34 +0000
commit16d2b24ac05f7a5654bddcf9cb61f0f6684d1806 (patch)
tree6d20d184c6b3752376d4492bd925f367bf8ef87c /include/usb_console.h
parent580a54658ad27550a1da5cd6077b901a12d447f2 (diff)
downloadchrome-ec-16d2b24ac05f7a5654bddcf9cb61f0f6684d1806.tar.gz
g: re-implement usb console with usb-stream configuration.
This patch introduces CONFIG_USB_CONSOLE_STREAM, which implements usb-console with usb-stream configuration, intending to remove code redundancy between the previous implementation (usb_console.c) and usb_stream.c. Flash usage decreases by 224 bytes, and RAM usage by 40 bytes. BUG=b:138447451 BRANCH=cr50 TEST=Checked cr50 USB console and cr50 UART console respectively. Key-in response and output are working well: ./util/uart_stress_tester.py /dev/ttyUSB0 -t 300 --debug Change-Id: I305038e1db83dc49bb12a8afdbfcc2a8135d50f5 Signed-off-by: Namyoon Woo <namyoon@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1741302 Reviewed-by: Mary Ruthven <mruthven@chromium.org>
Diffstat (limited to 'include/usb_console.h')
-rw-r--r--include/usb_console.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/usb_console.h b/include/usb_console.h
index 4505ed5c34..296829ff9c 100644
--- a/include/usb_console.h
+++ b/include/usb_console.h
@@ -8,7 +8,7 @@
#ifndef __CROS_EC_USB_CONSOLE_H
#define __CROS_EC_USB_CONSOLE_H
-#ifdef CONFIG_USB_CONSOLE
+#if defined(CONFIG_USB_CONSOLE) || defined(CONFIG_USB_CONSOLE_STREAM)
#include <stdarg.h>