From cad12ee14e5b10721c04c4c26eabdfd3167bfc17 Mon Sep 17 00:00:00 2001 From: aozima Date: Tue, 24 Sep 2013 15:25:24 +0800 Subject: [PATCH] update rt_kprintf: make sure the device is in STREAM mode when used by rt_kprintf. --- src/kservice.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/kservice.c b/src/kservice.c index c2fa43ba73..0f06806087 100644 --- a/src/kservice.c +++ b/src/kservice.c @@ -29,6 +29,7 @@ * 2012-11-23 Bernard fix IAR compiler error. * 2012-12-22 Bernard fix rt_kprintf issue, which found by Grissiom. * 2013-06-24 Bernard remove rt_kprintf if RT_USING_CONSOLE is not defined. + * 2013-09-24 aozima make sure the device is in STREAM mode when used by rt_kprintf. */ #include @@ -1125,7 +1126,11 @@ void rt_kprintf(const char *fmt, ...) } else { + rt_uint16_t old_flag = _console_device->flag; + + _console_device->flag |= RT_DEVICE_FLAG_STREAM; rt_device_write(_console_device, 0, rt_log_buf, length); + _console_device->flag = old_flag; } #else rt_hw_console_output(rt_log_buf);