diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-04-13 08:44:43 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-04-13 08:44:43 +0000 |
commit | aa3c1d12b36791a5983d34934698a7f49c930b94 (patch) | |
tree | 3f65a6f8f9ce7c83e8b9009ac25c79adfe657609 /os/common/startup/ARMCMx/devices/STM32L1xx | |
parent | 5a60288080d3095f87258b94e8d89ad02b6265c8 (diff) | |
download | ChibiOS-aa3c1d12b36791a5983d34934698a7f49c930b94.tar.gz ChibiOS-aa3c1d12b36791a5983d34934698a7f49c930b94.tar.bz2 ChibiOS-aa3c1d12b36791a5983d34934698a7f49c930b94.zip |
Fixed bug #935.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11915 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/common/startup/ARMCMx/devices/STM32L1xx')
-rw-r--r-- | os/common/startup/ARMCMx/devices/STM32L1xx/cmparams.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/os/common/startup/ARMCMx/devices/STM32L1xx/cmparams.h b/os/common/startup/ARMCMx/devices/STM32L1xx/cmparams.h index fbb8475af..5b3f5f4bf 100644 --- a/os/common/startup/ARMCMx/devices/STM32L1xx/cmparams.h +++ b/os/common/startup/ARMCMx/devices/STM32L1xx/cmparams.h @@ -43,17 +43,6 @@ */
#define CORTEX_PRIORITY_BITS 4
-/**
- * @brief Number of interrupt vectors.
- * @note This number does not include the 16 system vectors and must be
- * rounded to a multiple of 8.
- */
-#define CORTEX_NUM_VECTORS 64
-
-/* The following code is not processed when the file is included from an
- asm module.*/
-#if !defined(_FROM_ASM_)
-
/* If the device type is not externally defined, for example from the Makefile,
then a file named board.h is included. This file must contain a device
definition compatible with the vendor include file.*/
@@ -71,6 +60,17 @@ #include "board.h"
#endif
+/**
+ * @brief Number of interrupt vectors.
+ * @note This number does not include the 16 system vectors and must be
+ * rounded to a multiple of 8.
+ */
+#define CORTEX_NUM_VECTORS 64
+
+/* The following code is not processed when the file is included from an
+ asm module.*/
+#if !defined(_FROM_ASM_)
+
/* Including the device CMSIS header. Note, we are not using the definitions
from this header because we need this file to be usable also from
assembler source files. We verify that the info matches instead.*/
|