Updates to a base set of includes to map to the h7 include files which are mainly based on the f7 versions for simple devices (e.g. SPI, USART, GPIO). Custom files that have been implemented from the datasheet/ref manual include the memory map, RCC, PWR definitions, and irq.json file for generation of nvic files for interrupt mapping. Additional functionality, especially PLL and tweaks for non-F7 compatible implementations coming in future commits. Added documentation tree configuration. Reviewed-by: Karl Palsson <karlp@tweak.net.au> Changed dmaX_streamX to dmaX_strX in a few places for consistency
92 lines
2.4 KiB
C
92 lines
2.4 KiB
C
#ifndef LIBOPENCM3_NVIC_H
|
|
#error You should not be including this file directly, but <libopencm3/cm3/nvic.h>
|
|
#endif
|
|
|
|
#if defined(STM32F0)
|
|
# include <libopencm3/stm32/f0/nvic.h>
|
|
#elif defined(STM32F1)
|
|
# include <libopencm3/stm32/f1/nvic.h>
|
|
#elif defined(STM32F2)
|
|
# include <libopencm3/stm32/f2/nvic.h>
|
|
#elif defined(STM32F3)
|
|
# include <libopencm3/stm32/f3/nvic.h>
|
|
#elif defined(STM32F4)
|
|
# include <libopencm3/stm32/f4/nvic.h>
|
|
#elif defined(STM32F7)
|
|
# include <libopencm3/stm32/f7/nvic.h>
|
|
#elif defined(STM32L0)
|
|
# include <libopencm3/stm32/l0/nvic.h>
|
|
#elif defined(STM32L1)
|
|
# include <libopencm3/stm32/l1/nvic.h>
|
|
#elif defined(STM32L4)
|
|
# include <libopencm3/stm32/l4/nvic.h>
|
|
#elif defined(STM32G0)
|
|
# include <libopencm3/stm32/g0/nvic.h>
|
|
#elif defined(STM32H7)
|
|
# include <libopencm3/stm32/h7/nvic.h>
|
|
|
|
#elif defined(GD32F1X0)
|
|
# include <libopencm3/gd32/f1x0/nvic.h>
|
|
|
|
#elif defined(EFM32TG)
|
|
# include <libopencm3/efm32/tg/nvic.h>
|
|
#elif defined(EFM32G)
|
|
# include <libopencm3/efm32/g/nvic.h>
|
|
#elif defined(EFM32LG)
|
|
# include <libopencm3/efm32/lg/nvic.h>
|
|
#elif defined(EFM32GG)
|
|
# include <libopencm3/efm32/gg/nvic.h>
|
|
#elif defined(EFM32HG)
|
|
# include <libopencm3/efm32/hg/nvic.h>
|
|
#elif defined(EFM32WG)
|
|
# include <libopencm3/efm32/wg/nvic.h>
|
|
#elif defined(EZR32WG)
|
|
# include <libopencm3/efm32/ezr32wg/nvic.h>
|
|
|
|
#elif defined(LPC13XX)
|
|
# include <libopencm3/lpc13xx/nvic.h>
|
|
#elif defined(LPC17XX)
|
|
# include <libopencm3/lpc17xx/nvic.h>
|
|
#elif defined(LPC43XX_M4)
|
|
# include <libopencm3/lpc43xx/m4/nvic.h>
|
|
#elif defined(LPC43XX_M0)
|
|
# include <libopencm3/lpc43xx/m0/nvic.h>
|
|
|
|
#elif defined(SAM3A)
|
|
# include <libopencm3/sam/3a/nvic.h>
|
|
#elif defined(SAM3N)
|
|
# include <libopencm3/sam/3n/nvic.h>
|
|
#elif defined(SAM3S)
|
|
# include <libopencm3/sam/3s/nvic.h>
|
|
#elif defined(SAM3U)
|
|
# include <libopencm3/sam/3u/nvic.h>
|
|
#elif defined(SAM3X)
|
|
# include <libopencm3/sam/3x/nvic.h>
|
|
#elif defined(SAM4L)
|
|
# include <libopencm3/sam/4l/nvic.h>
|
|
#elif defined(SAMD)
|
|
# include <libopencm3/sam/d/nvic.h>
|
|
|
|
#elif defined(LM3S) || defined(LM4F)
|
|
/* Yes, we use the same interrupt table for both LM3S and LM4F */
|
|
# include <libopencm3/lm3s/nvic.h>
|
|
|
|
#elif defined(MSP432E4)
|
|
# include <libopencm3/msp432/e4/nvic.h>
|
|
|
|
#elif defined(VF6XX)
|
|
# include <libopencm3/vf6xx/nvic.h>
|
|
|
|
#elif defined(SWM050)
|
|
# include <libopencm3/swm050/nvic.h>
|
|
|
|
#elif defined(PAC55XX)
|
|
# include <libopencm3/pac55xx/nvic.h>
|
|
|
|
#else
|
|
# warning"no interrupts defined for chipset; NVIC_IRQ_COUNT = 0"
|
|
|
|
#define NVIC_IRQ_COUNT 0
|
|
|
|
#endif
|