From 7ab0cff418bf49fcf1671dd72667b81a85c1ac37 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sun, 14 Nov 2010 13:29:09 +0000 Subject: Improved STM32 HAL support. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2363 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/platforms/STM8L/serial_lld.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'os/hal/platforms/STM8L') diff --git a/os/hal/platforms/STM8L/serial_lld.h b/os/hal/platforms/STM8L/serial_lld.h index 0447c91aa..d9fd75bf1 100644 --- a/os/hal/platforms/STM8L/serial_lld.h +++ b/os/hal/platforms/STM8L/serial_lld.h @@ -80,15 +80,15 @@ /*===========================================================================*/ #if STM8L_SERIAL_USE_USART1 && !STM8L_HAS_USART1 -#error "USART1 enabled but not present" +#error "USART1 not present in the selected device" #endif #if STM8L_SERIAL_USE_USART2 && !STM8L_HAS_USART2 -#error "USART2 enabled but not present" +#error "USART2 not present in the selected device" #endif #if STM8L_SERIAL_USE_USART3 && !STM8L_HAS_USART3 -#error "USART3 enabled but not present" +#error "USART3 not present in the selected device" #endif /*===========================================================================*/ -- cgit v1.2.3