summaryrefslogtreecommitdiff
path: root/common/panic_output.c
diff options
context:
space:
mode:
authorAlec Berg <alecaberg@chromium.org>2015-10-16 10:58:47 -0700
committerchrome-bot <chrome-bot@chromium.org>2015-10-19 13:45:49 -0700
commit4c8553dfb13d8046a32b833321826aade31a0264 (patch)
tree5fe32dcaa4d4884895cafd8237f93b79f2ce2a07 /common/panic_output.c
parent979440a583ad4e3de8b4c29e7a0861206eb271aa (diff)
downloadchrome-ec-4c8553dfb13d8046a32b833321826aade31a0264.tar.gz
stm32: add synchronous debug printf
Allow use of a synchronous debug printf instead of using the full console task to save space. This can be turned on with CONFIG_DEBUG_PRINTF, and will provide essentially a one-way console for debugging. This is essentially expanding upon the debug_printf work done for zinger. BUG=chrome-os-partner:41959 BRANCH=none TEST=tested with following CLs on glados_pd by verifying we get a one-way console. Change-Id: If028b5d873261890de5b270bbc00e06bdcaa7431 Signed-off-by: Alec Berg <alecaberg@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/306782 Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
Diffstat (limited to 'common/panic_output.c')
-rw-r--r--common/panic_output.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/panic_output.c b/common/panic_output.c
index 144b7a0e19..8d9cf2205d 100644
--- a/common/panic_output.c
+++ b/common/panic_output.c
@@ -26,6 +26,7 @@ static struct panic_data * const pdata_ptr = PANIC_DATA_PTR;
* @param c Character to write.
* @return 0 if the character was transmitted, 1 if it was dropped.
*/
+#ifndef CONFIG_DEBUG_PRINTF
static int panic_txchar(void *context, int c)
{
if (c == '\n')
@@ -68,6 +69,7 @@ void panic_printf(const char *format, ...)
/* Flush the transmit FIFO */
uart_tx_flush();
}
+#endif
/**
* Display a message and reboot