diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-12-29 13:15:29 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-12-29 13:15:29 +0000 |
commit | dc403a00e86455bc65aabbd6c3d0fffe97b00ac4 (patch) | |
tree | ff317e8fc00accaa76bac2ab8493d4cef0dbb6f7 /os/hal/platforms/STM32/serial_lld.c | |
parent | 26790f9fb067095c855498241ababa35ce17e555 (diff) | |
download | ChibiOS-dc403a00e86455bc65aabbd6c3d0fffe97b00ac4.tar.gz ChibiOS-dc403a00e86455bc65aabbd6c3d0fffe97b00ac4.tar.bz2 ChibiOS-dc403a00e86455bc65aabbd6c3d0fffe97b00ac4.zip |
Updated all platforms.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1480 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32/serial_lld.c')
-rw-r--r-- | os/hal/platforms/STM32/serial_lld.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/os/hal/platforms/STM32/serial_lld.c b/os/hal/platforms/STM32/serial_lld.c index e2d893761..afa0bffc6 100644 --- a/os/hal/platforms/STM32/serial_lld.c +++ b/os/hal/platforms/STM32/serial_lld.c @@ -30,26 +30,26 @@ #if CH_HAL_USE_SERIAL || defined(__DOXYGEN__)
/*===========================================================================*/
-/* Low Level Driver exported variables. */
+/* Driver exported variables. */
/*===========================================================================*/
-#if USE_STM32_USART1 || defined(__DOXYGEN__)
/** @brief USART1 serial driver identifier.*/
+#if USE_STM32_USART1 || defined(__DOXYGEN__)
SerialDriver SD1;
#endif
-#if USE_STM32_USART2 || defined(__DOXYGEN__)
/** @brief USART2 serial driver identifier.*/
+#if USE_STM32_USART2 || defined(__DOXYGEN__)
SerialDriver SD2;
#endif
-#if USE_STM32_USART3 || defined(__DOXYGEN__)
/** @brief USART3 serial driver identifier.*/
+#if USE_STM32_USART3 || defined(__DOXYGEN__)
SerialDriver SD3;
#endif
/*===========================================================================*/
-/* Low Level Driver local variables. */
+/* Driver local variables. */
/*===========================================================================*/
/** @brief Driver default configuration.*/
@@ -62,7 +62,7 @@ static const SerialDriverConfig default_config = };
/*===========================================================================*/
-/* Low Level Driver local functions. */
+/* Driver local functions. */
/*===========================================================================*/
/**
@@ -173,7 +173,7 @@ static void notify3(void) { #endif
/*===========================================================================*/
-/* Low Level Driver interrupt handlers. */
+/* Driver interrupt handlers. */
/*===========================================================================*/
#if USE_STM32_USART1 || defined(__DOXYGEN__)
@@ -210,7 +210,7 @@ CH_IRQ_HANDLER(VectorDC) { #endif
/*===========================================================================*/
-/* Low Level Driver exported functions. */
+/* Driver exported functions. */
/*===========================================================================*/
/**
|