diff options
author | NIIBE Yutaka <gniibe@fsij.org> | 2016-05-30 14:57:10 +0900 |
---|---|---|
committer | NIIBE Yutaka <gniibe@fsij.org> | 2016-05-30 14:57:10 +0900 |
commit | 9f16e5e051c2cf11465d00a2ee0265039e448b06 (patch) | |
tree | fb3a664b095446e632a135c38ee139a85db48066 /entry.c | |
parent | b90e58f763bd277b7a5285601a34818f44f2b01c (diff) |
consolidate mcu-chip specific code
Diffstat (limited to 'entry.c')
-rw-r--r-- | entry.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -37,7 +37,7 @@ #ifdef MCU_KINETIS_L #include "mcu/sys-mkl27z.h" #else -#include "mcu/sys-stm32.h" +#include "mcu/sys-stm32f103.h" #undef STM32F10X_MD /* Prepare for high density device, too. */ #endif #else @@ -45,7 +45,7 @@ #if defined (MCU_KINETIS_L) #include "mcu/clk_gpio_init-mkl27z.c" #else -#include "mcu/clk_gpio_init-stm32.c" +#include "mcu/clk_gpio_init-stm32f103.c" #endif #endif |