GD32F1X0 (X can be 3, 5, 7 and 9) is a series of Cortex-M3 MCUs by GigaDevice, which features pin-to-pin package compatibility with STM32F030 MCU line. F150 adds USB support to F130, and F170/F190 adds CAN support. Currently the code mainly targets GD32F130 and F150 chips. Some register are different between F130/150 and F170/190, just like the difference between STM32F1 Performance line and Connectivity line. From the perspective of registers and memory map, GD32F1X0 seems like a mixture between STM32F1 and STM32F0 (because it is designed to be pin-to-pin compatible with F0, but with Cortex-M3 like F1). A bunch of code are shared between STM32 and GD32, and these code are specially processed to include the GD32 headers instead of STM32 headers when meet GD32F1X0. Signed-off-by: Icenowy Zheng <icenowy@aosc.io> Reviewed-by: Karl Palsson <karlp@tweak.net.au> gd32/rcc.[ch] are forks of stm32f1/rcc gd32/flash.[ch] are forks of stm32f0/flash No attempts at deduplicating this have been done at this stage. We can see where they move in the future.
64 lines
2.0 KiB
C
64 lines
2.0 KiB
C
#if defined(STM32F0)
|
|
# include <libopencmsis/stm32/f0/irqhandlers.h>
|
|
#elif defined(STM32F1)
|
|
# include <libopencmsis/stm32/f1/irqhandlers.h>
|
|
#elif defined(STM32F2)
|
|
# include <libopencmsis/stm32/f2/irqhandlers.h>
|
|
#elif defined(STM32F3)
|
|
# include <libopencmsis/stm32/f3/irqhandlers.h>
|
|
#elif defined(STM32F4)
|
|
# include <libopencmsis/stm32/f4/irqhandlers.h>
|
|
#elif defined(STM32F7)
|
|
# include <libopencmsis/stm32/f7/irqhandlers.h>
|
|
#elif defined(STM32L0)
|
|
# include <libopencmsis/stm32/l0/irqhandlers.h>
|
|
#elif defined(STM32L1)
|
|
# include <libopencmsis/stm32/l1/irqhandlers.h>
|
|
#elif defined(STM32L4)
|
|
# include <libopencmsis/stm32/l4/irqhandlers.h>
|
|
|
|
#elif defined(GD32F1X0)
|
|
# include <libopencmsis/gd32/f1x0/irqhandlers.h>
|
|
|
|
#elif defined(EFM32TG)
|
|
# include <libopencmsis/efm32/efm32tg/irqhandlers.h>
|
|
#elif defined(EFM32G)
|
|
# include <libopencmsis/efm32/efm32g/irqhandlers.h>
|
|
#elif defined(EFM32HG)
|
|
# include <libopencmsis/efm32/efm32hg/irqhandlers.h>
|
|
#elif defined(EFM32LG)
|
|
# include <libopencmsis/efm32/efm32lg/irqhandlers.h>
|
|
#elif defined(EFM32GG)
|
|
# include <libopencmsis/efm32/efm32gg/irqhandlers.h>
|
|
|
|
#elif defined(LPC13XX)
|
|
# include <libopencmsis/lpc13xx/irqhandlers.h>
|
|
#elif defined(LPC17XX)
|
|
# include <libopencmsis/lpc17xx/irqhandlers.h>
|
|
#elif defined(LPC43XX_M4)
|
|
# include <libopencmsis/lpc43xx/m4/irqhandlers.h>
|
|
#elif defined(LPC43XX_M0)
|
|
# include <libopencmsis/lpc43xx/m0/irqhandlers.h>
|
|
|
|
#elif defined(SAM3A)
|
|
# include <libopencmsis/sam/3a/irqhandlers.h>
|
|
#elif defined(SAM3N)
|
|
# include <libopencmsis/sam/3n/irqhandlers.h>
|
|
#elif defined(SAM3S)
|
|
# include <libopencmsis/sam/3s/irqhandlers.h>
|
|
#elif defined(SAM3U)
|
|
# include <libopencmsis/sam/3u/irqhandlers.h>
|
|
#elif defined(SAM3X)
|
|
# include <libopencmsis/sam/3x/irqhandlers.h>
|
|
#elif defined(SAMD)
|
|
# include <libopencmsis/sam/d/irqhandlers.h>
|
|
|
|
#elif defined(LM3S) || defined(LM4F)
|
|
/* Yes, we use the same interrupt table for both LM3S and LM4F */
|
|
# include <libopencmsis/lm3s/irqhandlers.h>
|
|
|
|
#else
|
|
# warning"no chipset defined; user interrupts are not redirected"
|
|
|
|
#endif
|