aboutsummaryrefslogtreecommitdiffstats
path: root/os/common/startup/ARMCMx/devices/STM32F2xx
diff options
context:
space:
mode:
Diffstat (limited to 'os/common/startup/ARMCMx/devices/STM32F2xx')
-rw-r--r--os/common/startup/ARMCMx/devices/STM32F2xx/cmparams.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/os/common/startup/ARMCMx/devices/STM32F2xx/cmparams.h b/os/common/startup/ARMCMx/devices/STM32F2xx/cmparams.h
index 67852c437..04511349b 100644
--- a/os/common/startup/ARMCMx/devices/STM32F2xx/cmparams.h
+++ b/os/common/startup/ARMCMx/devices/STM32F2xx/cmparams.h
@@ -43,6 +43,13 @@
*/
#define CORTEX_PRIORITY_BITS 4
+/* 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.*/
+#if !defined(STM32F2XX)
+#include "board.h"
+#endif
+
/**
* @brief Number of interrupt vectors.
* @note This number does not include the 16 system vectors and must be
@@ -54,13 +61,6 @@
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.*/
-#if !defined(STM32F2XX)
-#include "board.h"
-#endif
-
/* 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.*/