diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-07-28 14:22:57 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-07-28 14:22:57 +0000 |
commit | 5b7d62c5490a3f4662c1ba77ab3f78a80ad6869d (patch) | |
tree | dffae619b098255689af0ae2dddfdad4166c4d70 /os/nil | |
parent | 402bd03481bb1d0b062e72eab2d24d714b846285 (diff) | |
download | ChibiOS-5b7d62c5490a3f4662c1ba77ab3f78a80ad6869d.tar.gz ChibiOS-5b7d62c5490a3f4662c1ba77ab3f78a80ad6869d.tar.bz2 ChibiOS-5b7d62c5490a3f4662c1ba77ab3f78a80ad6869d.zip |
Updated EXT driver.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8121 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/nil')
-rw-r--r-- | os/nil/ports/ARMCMx/nilcore.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/nil/ports/ARMCMx/nilcore.h b/os/nil/ports/ARMCMx/nilcore.h index 20a43fadf..21b5a0535 100644 --- a/os/nil/ports/ARMCMx/nilcore.h +++ b/os/nil/ports/ARMCMx/nilcore.h @@ -180,9 +180,9 @@ struct port_intctx {}; /* Includes the sub-architecture-specific part.*/
#if (CORTEX_MODEL == 0) || (CORTEX_MODEL == 1)
-#include "chcore_v6m.h"
+#include "nilcore_v6m.h"
#elif (CORTEX_MODEL == 3) || (CORTEX_MODEL == 4) || (CORTEX_MODEL == 7)
-#include "chcore_v7m.h"
+#include "nilcore_v7m.h"
#else
#error "unknown Cortex-M variant"
#endif
|