From cd4329c9d1d6de9f4da731ac2d2a251ee45c87e4 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sun, 10 Mar 2013 10:29:29 +0000 Subject: [PATCH] git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5400 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- testhal/STM32F4xx/UART/main.c | 4 ++-- 1 file 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); }