Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: HelloWorld_CCA01M1 HelloWorld_CCA02M1 CI-data-logger-server HelloWorld_CCA02M1 ... more
This is a fork of the events subdirectory of https://github.com/ARMmbed/mbed-os.
Note, you must import this library with import name: events!!!
Diff: hal/common/retarget.cpp
- Revision:
- 6892:5bf317924ef4
- Parent:
- 6549:723eda4f0297
- Child:
- 6939:3866e967d1f2
diff -r 509d8fdc4e0f -r 5bf317924ef4 hal/common/retarget.cpp
--- a/hal/common/retarget.cpp Mon Jul 11 11:07:40 2016 +0100
+++ b/hal/common/retarget.cpp Wed Jun 22 00:38:41 2016 -0500
@@ -98,6 +98,9 @@
#if DEVICE_SERIAL
if (stdio_uart_inited) return;
serial_init(&stdio_uart, STDIO_UART_TX, STDIO_UART_RX);
+#if MBED_CONF_CORE_STDIO_BAUD_RATE
+ serial_baud(&stdio_uart, MBED_CONF_CORE_STDIO_BAUD_RATE);
+#endif
#endif
}