diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-09-10 17:04:55 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-09-10 17:04:55 +0000 |
commit | f238de5d39c847518403f116c3d2949a070e0266 (patch) | |
tree | f8c78a802273cdf56ec6c2a177b934ed8330fce2 /os/rt/ports | |
parent | c0de7a327dbb6d17318cbb368b75a7219f517c29 (diff) | |
download | ChibiOS-f238de5d39c847518403f116c3d2949a070e0266.tar.gz ChibiOS-f238de5d39c847518403f116c3d2949a070e0266.tar.bz2 ChibiOS-f238de5d39c847518403f116c3d2949a070e0266.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6290 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt/ports')
-rw-r--r-- | os/rt/ports/ARMCMx/chcore.h | 6 | ||||
-rw-r--r-- | os/rt/ports/ARMCMx/chcore_v6m.h | 4 | ||||
-rw-r--r-- | os/rt/ports/ARMCMx/chcore_v7m.h | 4 |
3 files changed, 6 insertions, 8 deletions
diff --git a/os/rt/ports/ARMCMx/chcore.h b/os/rt/ports/ARMCMx/chcore.h index c2eb68078..9274b6d1d 100644 --- a/os/rt/ports/ARMCMx/chcore.h +++ b/os/rt/ports/ARMCMx/chcore.h @@ -196,6 +196,12 @@ struct port_intctx {}; #include "chcore_v7m.h"
#endif
+#if !defined(_FROM_ASM_)
+#if CH_CFG_TIMEDELTA > 0
+#include "chcore_timer.h"
+#endif
+#endif /* !defined(_FROM_ASM_) */
+
#endif /* _CHCORE_H_ */
/** @} */
diff --git a/os/rt/ports/ARMCMx/chcore_v6m.h b/os/rt/ports/ARMCMx/chcore_v6m.h index fc53c0202..7cba6df34 100644 --- a/os/rt/ports/ARMCMx/chcore_v6m.h +++ b/os/rt/ports/ARMCMx/chcore_v6m.h @@ -286,10 +286,6 @@ extern "C" { }
#endif
-#if CH_CFG_TIMEDELTA > 0
-#include "chcore_timer.h"
-#endif
-
/*===========================================================================*/
/* Module inline functions. */
/*===========================================================================*/
diff --git a/os/rt/ports/ARMCMx/chcore_v7m.h b/os/rt/ports/ARMCMx/chcore_v7m.h index c802a980d..3c5947557 100644 --- a/os/rt/ports/ARMCMx/chcore_v7m.h +++ b/os/rt/ports/ARMCMx/chcore_v7m.h @@ -383,10 +383,6 @@ extern "C" { }
#endif
-#if CH_CFG_TIMEDELTA > 0
-#include "chcore_timer.h"
-#endif
-
/*===========================================================================*/
/* Module inline functions. */
/*===========================================================================*/
|