aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/STM32/serial_lld.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-11-14 13:29:09 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-11-14 13:29:09 +0000
commit7ab0cff418bf49fcf1671dd72667b81a85c1ac37 (patch)
tree9527dc092b8fc59f733b2a0353d579ceec8a72ff /os/hal/platforms/STM32/serial_lld.h
parentbf8592688860a61181b3f5a4c9b6d4d8856b8abb (diff)
downloadChibiOS-7ab0cff418bf49fcf1671dd72667b81a85c1ac37.tar.gz
ChibiOS-7ab0cff418bf49fcf1671dd72667b81a85c1ac37.tar.bz2
ChibiOS-7ab0cff418bf49fcf1671dd72667b81a85c1ac37.zip
Improved STM32 HAL support.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2363 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32/serial_lld.h')
-rw-r--r--os/hal/platforms/STM32/serial_lld.h22
1 files changed, 16 insertions, 6 deletions
diff --git a/os/hal/platforms/STM32/serial_lld.h b/os/hal/platforms/STM32/serial_lld.h
index 00617a98a..5d7d80c11 100644
--- a/os/hal/platforms/STM32/serial_lld.h
+++ b/os/hal/platforms/STM32/serial_lld.h
@@ -122,14 +122,24 @@
/* Derived constants and error checks. */
/*===========================================================================*/
-#if STM32_SERIAL_USE_UART4 && \
- !(defined(STM32F10X_HD) || defined(STM32F10X_CL))
-#error "UART4 only present in HD and CL devices"
+#if STM32_SERIAL_USE_USART1 && !STM32_HAS_USART1
+#error "USART1 not present in the selected device"
#endif
-#if STM32_SERIAL_USE_UART5 && \
- !(defined(STM32F10X_HD) || defined(STM32F10X_CL))
-#error "UART5 only present in HD and CL devices"
+#if STM32_SERIAL_USE_USART2 && !STM32_HAS_USART2
+#error "USART2 not present in the selected device"
+#endif
+
+#if STM32_SERIAL_USE_USART3 && !STM32_HAS_USART3
+#error "USART3 not present in the selected device"
+#endif
+
+#if STM32_SERIAL_USE_UART4 && !STM32_HAS_UART4
+#error "UART4 not present in the selected device"
+#endif
+
+#if STM32_SERIAL_USE_UART5 && !STM32_HAS_UART5
+#error "UART5 not present in the selected device"
#endif
#if !STM32_SERIAL_USE_USART1 && !STM32_SERIAL_USE_USART2 && \