diff options
author | NIIBE Yutaka <gniibe@fsij.org> | 2016-05-30 14:39:02 +0900 |
---|---|---|
committer | NIIBE Yutaka <gniibe@fsij.org> | 2016-05-30 14:39:02 +0900 |
commit | b90e58f763bd277b7a5285601a34818f44f2b01c (patch) | |
tree | 4535e6abc8b77d58215796c240489e7dbf499b44 /entry.c | |
parent | 8209f3875510d1990142a367c8bab6164c2f82cc (diff) |
Move CHIP specific things to mcu/
Diffstat (limited to 'entry.c')
-rw-r--r-- | entry.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -33,13 +33,17 @@ #ifdef HAVE_SYS_H #define INLINE __attribute__ ((used)) -#include "sys.h" #include "board.h" +#ifdef MCU_KINETIS_L +#include "mcu/sys-mkl27z.h" +#else +#include "mcu/sys-stm32.h" #undef STM32F10X_MD /* Prepare for high density device, too. */ +#endif #else #include "board.h" #if defined (MCU_KINETIS_L) -#include "mcu/clk_gpio_init-kl.c" +#include "mcu/clk_gpio_init-mkl27z.c" #else #include "mcu/clk_gpio_init-stm32.c" #endif |