diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-03-10 10:29:29 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-03-10 10:29:29 +0000 |
commit | cd4329c9d1d6de9f4da731ac2d2a251ee45c87e4 (patch) | |
tree | c7db620d07a603a1bd0a204f0d7d38fc6321f734 /testhal | |
parent | 70a2d4de7efaf5e5c886deb50680b1470fa8915a (diff) | |
download | ChibiOS-cd4329c9d1d6de9f4da731ac2d2a251ee45c87e4.tar.gz ChibiOS-cd4329c9d1d6de9f4da731ac2d2a251ee45c87e4.tar.bz2 ChibiOS-cd4329c9d1d6de9f4da731ac2d2a251ee45c87e4.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5400 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal')
-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 99237e8ae..5349471ca 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);
}
|