From c765bed2ca2479f6490b6171aacf6e7d67cb58d3 Mon Sep 17 00:00:00 2001 From: Myles Watson Date: Wed, 17 Dec 2014 17:11:04 -0800 Subject: [PATCH] console: Add a console for Bluetooth LE Protect the console with CONFIG_BLUETOOTH_LE to save space. BUG=None BRANCH=None TEST=make buildall -j32 Change-Id: I2309bf953904af36684b0fe32f94b2254b13c6a4 Signed-off-by: Myles Watson Reviewed-on: https://chromium-review.googlesource.com/361536 Commit-Ready: Dan Shi Reviewed-by: Randall Spangler Reviewed-by: Daisuke Nojiri --- include/console_channel.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/console_channel.inc b/include/console_channel.inc index 0e717e8eee..51c6df7c80 100644 --- a/include/console_channel.inc +++ b/include/console_channel.inc @@ -7,6 +7,9 @@ CONSOLE_CHANNEL(CC_COMMAND, "command") CONSOLE_CHANNEL(CC_ACCEL, "accel") +#ifdef CONFIG_BLUETOOTH_LE +CONSOLE_CHANNEL(CC_BLUETOOTH_LE, "bluetooth_le") +#endif #ifdef CONFIG_EXTENSION_COMMAND CONSOLE_CHANNEL(CC_EXTENSION, "extension") #endif