summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/stm32/stm32_vectors.S
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-05-18 12:56:03 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-05-18 12:56:03 -0600
commit5e2568f8a24b9a25d7dbba3022fa742120dbc331 (patch)
treee4d7a1ff340f1f8eea162f6cf242a67fe890ff62 /nuttx/arch/arm/src/stm32/stm32_vectors.S
parenta3ff9266aa01c82830e29985b81ffc0a67e705e3 (diff)
downloadpx4-nuttx-5e2568f8a24b9a25d7dbba3022fa742120dbc331.tar.gz
px4-nuttx-5e2568f8a24b9a25d7dbba3022fa742120dbc331.tar.bz2
px4-nuttx-5e2568f8a24b9a25d7dbba3022fa742120dbc331.zip
Support for STM32L15xx interrupt vectors
Diffstat (limited to 'nuttx/arch/arm/src/stm32/stm32_vectors.S')
-rw-r--r--nuttx/arch/arm/src/stm32/stm32_vectors.S8
1 files changed, 6 insertions, 2 deletions
diff --git a/nuttx/arch/arm/src/stm32/stm32_vectors.S b/nuttx/arch/arm/src/stm32/stm32_vectors.S
index 61a1ea83a..85d110be2 100644
--- a/nuttx/arch/arm/src/stm32/stm32_vectors.S
+++ b/nuttx/arch/arm/src/stm32/stm32_vectors.S
@@ -138,7 +138,9 @@ stm32_vectors:
#undef UNUSED
#define UNUSED(i) .word stm32_reserved
-#if defined(CONFIG_STM32_STM32F10XX)
+#if defined(CONFIG_STM32_STM32L15XX)
+# include "chip/chip/stm32l15xxx_vectors.h"
+#elif defined(CONFIG_STM32_STM32F10XX)
# include "chip/chip/stm32f10xxx_vectors.h"
#elif defined(CONFIG_STM32_STM32F20XX)
# include "chip/chip/stm32f20xxx_vectors.h"
@@ -176,7 +178,9 @@ handlers:
#undef UNUSED
#define UNUSED(i)
-#if defined(CONFIG_STM32_STM32F10XX)
+#if defined(CONFIG_STM32_STM32L15XX)
+# include "chip/chip/stm32l15xxx_vectors.h"
+#elif defined(CONFIG_STM32_STM32F10XX)
# include "chip/chip/stm32f10xxx_vectors.h"
#elif defined(CONFIG_STM32_STM32F20XX)
# include "chip/chip/stm32f20xxx_vectors.h"