aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/STM8/serial_lld.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-05-30 10:35:14 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-05-30 10:35:14 +0000
commitbf019ef89dcbb31160f8c7dd4a4a2dc3f2ee1a22 (patch)
tree61074fc3f247ac6fb7b540eca139c1275164cb68 /os/hal/platforms/STM8/serial_lld.c
parentdcf03f2c4438711637dac80b723be632bd7a605a (diff)
downloadChibiOS-bf019ef89dcbb31160f8c7dd4a4a2dc3f2ee1a22.tar.gz
ChibiOS-bf019ef89dcbb31160f8c7dd4a4a2dc3f2ee1a22.tar.bz2
ChibiOS-bf019ef89dcbb31160f8c7dd4a4a2dc3f2ee1a22.zip
Fixed bug 3009145.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1972 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM8/serial_lld.c')
-rw-r--r--os/hal/platforms/STM8/serial_lld.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/STM8/serial_lld.c b/os/hal/platforms/STM8/serial_lld.c
index d3b49b1e4..f43c16828 100644
--- a/os/hal/platforms/STM8/serial_lld.c
+++ b/os/hal/platforms/STM8/serial_lld.c
@@ -148,7 +148,7 @@ static void uart1_deinit(void) {
#if USE_STM8_UART3 || defined(__DOXYGEN__)
static void notify3(void) {
- UART1_CR2 |= 0x80; /* TIEN bit. */
+ UART3_CR2 |= 0x80; /* TIEN bit. */
}
/**