diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-04-23 11:42:06 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-04-23 11:42:06 +0000 |
commit | c73817447f025597bb38b4df2f606026a6de4009 (patch) | |
tree | 78de88567ef049ad542b6164d44cd09f76870e01 /os/ports/GCC | |
parent | 476c5f0802791ee8e5a7292c1aef259e56e117b9 (diff) | |
download | ChibiOS-c73817447f025597bb38b4df2f606026a6de4009.tar.gz ChibiOS-c73817447f025597bb38b4df2f606026a6de4009.tar.bz2 ChibiOS-c73817447f025597bb38b4df2f606026a6de4009.zip |
More on bug 3291898.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2892 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/ports/GCC')
-rw-r--r-- | os/ports/GCC/ARMCMx/STM32/vectors.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/os/ports/GCC/ARMCMx/STM32/vectors.c b/os/ports/GCC/ARMCMx/STM32/vectors.c index 0995e21d1..f12e2e867 100644 --- a/os/ports/GCC/ARMCMx/STM32/vectors.c +++ b/os/ports/GCC/ARMCMx/STM32/vectors.c @@ -97,12 +97,13 @@ extern void VectorDC(void); extern void VectorE0(void);
extern void VectorE4(void);
extern void VectorE8(void);
-#if defined(STM32F10X_MD_VL) || defined(STM32F10X_HD) || defined(STM32F10X_CL)
+#if defined(STM32F10X_MD_VL) || defined(STM32F10X_HD) || \
+ defined(STM32F10X_XL) || defined(STM32F10X_CL)
extern void VectorEC(void);
extern void VectorF0(void);
extern void VectorF4(void);
#endif
-#if defined(STM32F10X_HD) || defined(STM32F10X_CL)
+#if defined(STM32F10X_HD) || defined(STM32F10X_XL) || defined(STM32F10X_CL)
extern void VectorF8(void);
extern void VectorFC(void);
extern void Vector100(void);
|