diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-03-10 11:04:37 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-03-10 11:04:37 +0000 |
commit | 4e3ffc5134a06a4e6b87a02fc85bd16e77656bd4 (patch) | |
tree | c3513d4cf7da5a63816f4d174259803687ed2411 /testhal/STM32F4xx | |
parent | cd4329c9d1d6de9f4da731ac2d2a251ee45c87e4 (diff) | |
download | ChibiOS-4e3ffc5134a06a4e6b87a02fc85bd16e77656bd4.tar.gz ChibiOS-4e3ffc5134a06a4e6b87a02fc85bd16e77656bd4.tar.bz2 ChibiOS-4e3ffc5134a06a4e6b87a02fc85bd16e77656bd4.zip |
Fixed bug 3607518.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5401 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32F4xx')
-rw-r--r-- | testhal/STM32F4xx/UART/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testhal/STM32F4xx/UART/main.c b/testhal/STM32F4xx/UART/main.c index 5349471ca..99237e8ae 100644 --- a/testhal/STM32F4xx/UART/main.c +++ b/testhal/STM32F4xx/UART/main.c @@ -158,9 +158,9 @@ int main(void) { * handled entirely in background.
*/
uartStopReceive(&UARTD2);
-// uartStopSend(&UARTD2);
+ uartStopSend(&UARTD2);
uartStartReceive(&UARTD2, 16, buffer);
-// uartStartSend(&UARTD2, 16, message);
+ uartStartSend(&UARTD2, 16, message);
}
chThdSleepMilliseconds(500);
}
|