From c02afef7dfff3e1fd2645c9e94947342e0ee35ad Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sun, 14 Apr 2013 09:01:19 +0000 Subject: Fixed bug #400. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5589 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/platforms/STM32F0xx/adc_lld.c | 2 +- os/hal/platforms/STM32F0xx/ext_lld_isr.c | 14 +++++++------- os/hal/platforms/STM32F0xx/stm32_dma.c | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) (limited to 'os/hal/platforms/STM32F0xx') diff --git a/os/hal/platforms/STM32F0xx/adc_lld.c b/os/hal/platforms/STM32F0xx/adc_lld.c index 2fad88cda..5fa419679 100644 --- a/os/hal/platforms/STM32F0xx/adc_lld.c +++ b/os/hal/platforms/STM32F0xx/adc_lld.c @@ -102,7 +102,7 @@ static void adc_lld_serve_rx_interrupt(ADCDriver *adcp, uint32_t flags) { * * @isr */ -CH_IRQ_HANDLER(ADC1_COMP_IRQHandler) { +CH_IRQ_HANDLER(Vector70) { uint32_t isr; CH_IRQ_PROLOGUE(); diff --git a/os/hal/platforms/STM32F0xx/ext_lld_isr.c b/os/hal/platforms/STM32F0xx/ext_lld_isr.c index d4fd06155..afccfdd8c 100644 --- a/os/hal/platforms/STM32F0xx/ext_lld_isr.c +++ b/os/hal/platforms/STM32F0xx/ext_lld_isr.c @@ -50,11 +50,11 @@ /*===========================================================================*/ /** - * @brief EXTI[0] interrupt handler. + * @brief EXTI[0]...EXTI[1] interrupt handler. * * @isr */ -CH_IRQ_HANDLER(EXTI0_1_IRQHandler) { +CH_IRQ_HANDLER(Vector54) { uint32_t pr; CH_IRQ_PROLOGUE(); @@ -70,11 +70,11 @@ CH_IRQ_HANDLER(EXTI0_1_IRQHandler) { } /** - * @brief EXTI[1] interrupt handler. + * @brief EXTI[2]...EXTI[3] interrupt handler. * * @isr */ -CH_IRQ_HANDLER(EXTI2_3_IRQHandler) { +CH_IRQ_HANDLER(Vector58) { uint32_t pr; CH_IRQ_PROLOGUE(); @@ -94,7 +94,7 @@ CH_IRQ_HANDLER(EXTI2_3_IRQHandler) { * * @isr */ -CH_IRQ_HANDLER(EXTI4_15_IRQHandler) { +CH_IRQ_HANDLER(Vector5C) { uint32_t pr; CH_IRQ_PROLOGUE(); @@ -136,7 +136,7 @@ CH_IRQ_HANDLER(EXTI4_15_IRQHandler) { * * @isr */ -CH_IRQ_HANDLER(PVD_IRQHandler) { +CH_IRQ_HANDLER(Vector44) { CH_IRQ_PROLOGUE(); @@ -151,7 +151,7 @@ CH_IRQ_HANDLER(PVD_IRQHandler) { * * @isr */ -CH_IRQ_HANDLER(RTC_IRQHandler) { +CH_IRQ_HANDLER(Vector48) { CH_IRQ_PROLOGUE(); diff --git a/os/hal/platforms/STM32F0xx/stm32_dma.c b/os/hal/platforms/STM32F0xx/stm32_dma.c index 44f10cbf6..2305d952d 100644 --- a/os/hal/platforms/STM32F0xx/stm32_dma.c +++ b/os/hal/platforms/STM32F0xx/stm32_dma.c @@ -109,7 +109,7 @@ static dma_isr_redir_t dma_isr_redir[STM32_DMA_STREAMS]; * * @isr */ -CH_IRQ_HANDLER(DMA1_Ch1_IRQHandler) { +CH_IRQ_HANDLER(Vector64) { uint32_t flags; CH_IRQ_PROLOGUE(); @@ -127,7 +127,7 @@ CH_IRQ_HANDLER(DMA1_Ch1_IRQHandler) { * * @isr */ -CH_IRQ_HANDLER(DMA1_Ch2_3_IRQHandler) { +CH_IRQ_HANDLER(Vector68) { uint32_t flags; CH_IRQ_PROLOGUE(); @@ -156,7 +156,7 @@ CH_IRQ_HANDLER(DMA1_Ch2_3_IRQHandler) { * * @isr */ -CH_IRQ_HANDLER(DMA1_Ch4_5_IRQHandler) { +CH_IRQ_HANDLER(Vector6C) { uint32_t flags; CH_IRQ_PROLOGUE(); -- cgit v1.2.3