diff options
Diffstat (limited to 'example-fs-bb48/command.c')
-rw-r--r-- | example-fs-bb48/command.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/example-fs-bb48/command.c b/example-fs-bb48/command.c index 6556bc7..15df6dd 100644 --- a/example-fs-bb48/command.c +++ b/example-fs-bb48/command.c @@ -7,8 +7,13 @@ #include "adc.h" static int adc_initialized = 0; #endif -#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 struct command_table { |