diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-02-06 20:34:05 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-02-06 20:34:05 +0000 |
commit | 77df449498effbd6083e82920bb2705fdee16343 (patch) | |
tree | 989b117217773a3c6eceb6210db2c3dd63edc595 /ports/ARMCM3-STM32F103 | |
parent | 724de0c330e40a599896bf5bca119ab121c24382 (diff) | |
download | ChibiOS-77df449498effbd6083e82920bb2705fdee16343.tar.gz ChibiOS-77df449498effbd6083e82920bb2705fdee16343.tar.bz2 ChibiOS-77df449498effbd6083e82920bb2705fdee16343.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@728 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'ports/ARMCM3-STM32F103')
-rw-r--r-- | ports/ARMCM3-STM32F103/stm32_serial.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/ports/ARMCM3-STM32F103/stm32_serial.c b/ports/ARMCM3-STM32F103/stm32_serial.c index 9d0534b04..3fbf8abfc 100644 --- a/ports/ARMCM3-STM32F103/stm32_serial.c +++ b/ports/ARMCM3-STM32F103/stm32_serial.c @@ -103,9 +103,6 @@ static void ServeInterrupt(USART_TypeDef *u, FullDuplexDriver *com) { } #if USE_STM32_USART1 || defined(__DOXYGEN__) -/** - * @brief USART1 IRQ service routine. - */ CH_IRQ_HANDLER(VectorD4) { CH_IRQ_PROLOGUE(); @@ -115,9 +112,6 @@ CH_IRQ_HANDLER(VectorD4) { CH_IRQ_EPILOGUE(); } -/** - * @brief Output queue insertion notification from the high driver. - */ static void OutNotify1(void) { USART1->CR1 |= CR1_TXEIE; @@ -125,9 +119,6 @@ static void OutNotify1(void) { #endif #if USE_STM32_USART2 || defined(__DOXYGEN__) -/** - * @brief USART2 IRQ service routine. - */ CH_IRQ_HANDLER(VectorD8) { CH_IRQ_PROLOGUE(); @@ -137,9 +128,6 @@ CH_IRQ_HANDLER(VectorD8) { CH_IRQ_EPILOGUE(); } -/** - * @brief Output queue insertion notification from the high driver. - */ static void OutNotify2(void) { USART2->CR1 |= CR1_TXEIE; @@ -147,9 +135,6 @@ static void OutNotify2(void) { #endif #if USE_STM32_USART3 || defined(__DOXYGEN__) -/** - * @brief USART3 IRQ service routine. - */ CH_IRQ_HANDLER(VectorDC) { CH_IRQ_PROLOGUE(); @@ -159,9 +144,6 @@ CH_IRQ_HANDLER(VectorDC) { CH_IRQ_EPILOGUE(); } -/** - * @brief Output queue insertion notification from the high driver. - */ static void OutNotify3(void) { USART3->CR1 |= CR1_TXEIE; |