blackmagic/lib/dispatch/vector_chipset.c
Frantisek Burian 3ef2c38120 [stm32f7] Add initial support of the family, GPIO support.
Most changes are noise from doxygen.
Readme udpated to explain newer FP_FLAGS for m7
stm32f7 library is skipped if the toolchain doesn't support it yet.
2015-10-15 10:34:28 +00:00

17 lines
364 B
C

#if defined(STM32F3)
# include "../stm32/f3/vector_chipset.c"
#elif defined(STM32F4)
# include "../stm32/f4/vector_chipset.c"
#elif defined(STM32F7)
# include "../stm32/f7/vector_chipset.c"
#elif defined(LPC43XX_M4)
# include "../lpc43xx/m4/vector_chipset.c"
#elif defined(VF6XX)
# include "../vf6xx/vector_chipset.c"
#else
static void pre_main(void) {}
#endif