From c87b2f82ce30088885fd2a10fd9fbd13d661a104 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Thu, 29 Oct 2015 09:00:03 +0000 Subject: [PATCH] Fixed bug #655. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8397 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/ports/STM32/STM32F3xx/ext_lld_isr.c | 2 +- readme.txt | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/os/hal/ports/STM32/STM32F3xx/ext_lld_isr.c b/os/hal/ports/STM32/STM32F3xx/ext_lld_isr.c index e83378c16..4140e67dd 100644 --- a/os/hal/ports/STM32/STM32F3xx/ext_lld_isr.c +++ b/os/hal/ports/STM32/STM32F3xx/ext_lld_isr.c @@ -365,7 +365,7 @@ OSAL_IRQ_HANDLER(Vector144) { * * @isr */ -OSAL_IRQ_HANDLER(RTC_WKUP_IRQHandler) { +OSAL_IRQ_HANDLER(Vector140) { uint32_t pr2; OSAL_IRQ_PROLOGUE(); diff --git a/readme.txt b/readme.txt index 5767c549d..e58bb1688 100644 --- a/readme.txt +++ b/readme.txt @@ -126,6 +126,8 @@ - HAL: Updated STM32F0xx headers to STM32CubeF0 version 1.3.0. Added support for STM32F030xC, STM32F070x6, STM32F070xB, STM32F091xC, STM32F098xx devices. +- HAL: Fixed Wrong vector name for STM32F3xx EXTI33 (bug #655)(backported + to 3.0.3 and 2.6.10). - HAL: Fixed missing RCC and ISR definitions for STM32F0xx timers (bug #651) (backported to 3.0.3 and 2.6.10). - HAL: Fixed incorrect compiler check in STM32 RTCv1 driver (bug #650)