diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-10-29 09:00:03 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-10-29 09:00:03 +0000 |
commit | c87b2f82ce30088885fd2a10fd9fbd13d661a104 (patch) | |
tree | 18f1715741f36cc389470203403ff6fd98b2bca8 /os/hal/ports | |
parent | 7964a10f9115df3912ce96005de1cde7e4def39d (diff) | |
download | ChibiOS-c87b2f82ce30088885fd2a10fd9fbd13d661a104.tar.gz ChibiOS-c87b2f82ce30088885fd2a10fd9fbd13d661a104.tar.bz2 ChibiOS-c87b2f82ce30088885fd2a10fd9fbd13d661a104.zip |
Fixed bug #655.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8397 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports')
-rw-r--r-- | os/hal/ports/STM32/STM32F3xx/ext_lld_isr.c | 2 |
1 files changed, 1 insertions, 1 deletions
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();
|