From 76a6057c1dde2252ccaee91ba09fea24e84d18aa Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 31 Jul 2010 09:44:41 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2103 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- testhal/STM32/UART/main.c | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) (limited to 'testhal') diff --git a/testhal/STM32/UART/main.c b/testhal/STM32/UART/main.c index 1683c9774..5e6b9b413 100644 --- a/testhal/STM32/UART/main.c +++ b/testhal/STM32/UART/main.c @@ -28,12 +28,26 @@ static void txend2(void) { } +static void rxerr(uartflags_t e) { + + (void)e; +} + +static void rxchar(uint16_t c) { + + (void)c; +} + +static void rxend(void) { + +} + static UARTConfig uart_cfg_1 = { txend1, txend2, - NULL, - NULL, - NULL, + rxend, + rxchar, + rxerr, 38400, 0, USART_CR2_LINEN, -- cgit v1.2.3