Support for STM32G031, STM32G0B1, STM32G0C1.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@14787 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
c94f9e0460
commit
d6fe09fa36
|
@ -26,8 +26,10 @@
|
||||||
* - STM32_HSE_BYPASS (optionally).
|
* - STM32_HSE_BYPASS (optionally).
|
||||||
* .
|
* .
|
||||||
* One of the following macros must also be defined:
|
* One of the following macros must also be defined:
|
||||||
|
* - STM32G031xx.
|
||||||
* - STM32G070xx.
|
* - STM32G070xx.
|
||||||
* - STM32G071xx, STM32G081xx.
|
* - STM32G071xx, STM32G081xx.
|
||||||
|
* - STM32G0B1xx, STM32G0C1xx.
|
||||||
* .
|
* .
|
||||||
*
|
*
|
||||||
* @addtogroup HAL
|
* @addtogroup HAL
|
||||||
|
@ -50,12 +52,21 @@
|
||||||
#if defined(STM32G070xx) || defined(__DOXYGEN__)
|
#if defined(STM32G070xx) || defined(__DOXYGEN__)
|
||||||
#define PLATFORM_NAME "STM32G0 Entry-level Value Line"
|
#define PLATFORM_NAME "STM32G0 Entry-level Value Line"
|
||||||
|
|
||||||
|
#elif defined(STM32G031xx)
|
||||||
|
#define PLATFORM_NAME "STM32G0 Entry-level"
|
||||||
|
|
||||||
#elif defined(STM32G071xx)
|
#elif defined(STM32G071xx)
|
||||||
#define PLATFORM_NAME "STM32G0 Entry-level"
|
#define PLATFORM_NAME "STM32G0 Entry-level"
|
||||||
|
|
||||||
#elif defined(STM32G081xx)
|
#elif defined(STM32G081xx)
|
||||||
#define PLATFORM_NAME "STM32G0 Entry-level with Crypto"
|
#define PLATFORM_NAME "STM32G0 Entry-level with Crypto"
|
||||||
|
|
||||||
|
#elif defined(STM32G0B1xx)
|
||||||
|
#define PLATFORM_NAME "STM32G0 Extended Flash"
|
||||||
|
|
||||||
|
#elif defined(STM32G0C1xx)
|
||||||
|
#define PLATFORM_NAME "STM32G0 Extended Flash with Crypto"
|
||||||
|
|
||||||
#else
|
#else
|
||||||
#error "STM32G0 device not specified"
|
#error "STM32G0 device not specified"
|
||||||
#endif
|
#endif
|
||||||
|
@ -713,12 +724,21 @@
|
||||||
#if defined(STM32G070xx) && !defined(STM32G070_MCUCONF)
|
#if defined(STM32G070xx) && !defined(STM32G070_MCUCONF)
|
||||||
#error "Using a wrong mcuconf.h file, STM32G070_MCUCONF not defined"
|
#error "Using a wrong mcuconf.h file, STM32G070_MCUCONF not defined"
|
||||||
|
|
||||||
|
#elif defined(STM32G031xx) && !defined(STM32G031_MCUCONF)
|
||||||
|
#error "Using a wrong mcuconf.h file, STM32G031_MCUCONF not defined"
|
||||||
|
|
||||||
#elif defined(STM32G071xx) && !defined(STM32G071_MCUCONF)
|
#elif defined(STM32G071xx) && !defined(STM32G071_MCUCONF)
|
||||||
#error "Using a wrong mcuconf.h file, STM32G071_MCUCONF not defined"
|
#error "Using a wrong mcuconf.h file, STM32G071_MCUCONF not defined"
|
||||||
|
|
||||||
#elif defined(STM32G081xx) && !defined(STM32G081_MCUCONF)
|
#elif defined(STM32G081xx) && !defined(STM32G081_MCUCONF)
|
||||||
#error "Using a wrong mcuconf.h file, STM32G071_MCUCONF not defined"
|
#error "Using a wrong mcuconf.h file, STM32G071_MCUCONF not defined"
|
||||||
|
|
||||||
|
#elif defined(STM32G0B1xx) && !defined(STM32G0B1_MCUCONF)
|
||||||
|
#error "Using a wrong mcuconf.h file, STM32G0B1_MCUCONF not defined"
|
||||||
|
|
||||||
|
#elif defined(STM32G0C1xx) && !defined(STM32G0C1_MCUCONF)
|
||||||
|
#error "Using a wrong mcuconf.h file, STM32G0C1_MCUCONF not defined"
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -101,6 +101,183 @@
|
||||||
#define STM32_RCC_HAS_PLLSAI1 FALSE
|
#define STM32_RCC_HAS_PLLSAI1 FALSE
|
||||||
#define STM32_RCC_HAS_PLLSAI2 FALSE
|
#define STM32_RCC_HAS_PLLSAI2 FALSE
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* STM32G031xx. */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
#if defined(STM32G031xx)
|
||||||
|
|
||||||
|
/* ADC attributes.*/
|
||||||
|
#define STM32_HAS_ADC1 TRUE
|
||||||
|
#define STM32_HAS_ADC2 FALSE
|
||||||
|
#define STM32_HAS_ADC3 FALSE
|
||||||
|
#define STM32_HAS_ADC4 FALSE
|
||||||
|
|
||||||
|
/* CAN attributes.*/
|
||||||
|
#define STM32_HAS_CAN1 FALSE
|
||||||
|
#define STM32_HAS_CAN2 FALSE
|
||||||
|
#define STM32_HAS_CAN3 FALSE
|
||||||
|
#define STM32_HAS_FDCAN1 FALSE
|
||||||
|
#define STM32_HAS_FDCAN2 FALSE
|
||||||
|
|
||||||
|
/* DAC attributes.*/
|
||||||
|
#define STM32_HAS_DAC1_CH1 FALSE
|
||||||
|
#define STM32_HAS_DAC1_CH2 FALSE
|
||||||
|
#define STM32_HAS_DAC2_CH1 FALSE
|
||||||
|
#define STM32_HAS_DAC2_CH2 FALSE
|
||||||
|
|
||||||
|
/* DMA attributes.*/
|
||||||
|
#define STM32_ADVANCED_DMA TRUE
|
||||||
|
#define STM32_DMA_SUPPORTS_DMAMUX TRUE
|
||||||
|
#define STM32_DMA_SUPPORTS_CSELR FALSE
|
||||||
|
#define STM32_DMA1_NUM_CHANNELS 5
|
||||||
|
#define STM32_DMA2_NUM_CHANNELS 0
|
||||||
|
|
||||||
|
/* ETH attributes.*/
|
||||||
|
#define STM32_HAS_ETH FALSE
|
||||||
|
|
||||||
|
/* EXTI attributes.*/
|
||||||
|
#define STM32_EXTI_HAS_CR TRUE
|
||||||
|
#define STM32_EXTI_SEPARATE_RF TRUE
|
||||||
|
#define STM32_EXTI_HAS_GROUP2 FALSE
|
||||||
|
#define STM32_EXTI_NUM_LINES 36
|
||||||
|
#define STM32_EXTI_IMR1_MASK 0xFFF80000U
|
||||||
|
#define STM32_EXTI_IMR2_MASK 0xFFFFFFFFU
|
||||||
|
|
||||||
|
/* Flash attributes.*/
|
||||||
|
#define STM32_FLASH_NUMBER_OF_BANKS 1
|
||||||
|
|
||||||
|
/* GPIO attributes.*/
|
||||||
|
#define STM32_HAS_GPIOA TRUE
|
||||||
|
#define STM32_HAS_GPIOB TRUE
|
||||||
|
#define STM32_HAS_GPIOC TRUE
|
||||||
|
#define STM32_HAS_GPIOD TRUE
|
||||||
|
#define STM32_HAS_GPIOE FALSE
|
||||||
|
#define STM32_HAS_GPIOF TRUE
|
||||||
|
#define STM32_HAS_GPIOG FALSE
|
||||||
|
#define STM32_HAS_GPIOH FALSE
|
||||||
|
#define STM32_HAS_GPIOI FALSE
|
||||||
|
#define STM32_HAS_GPIOJ FALSE
|
||||||
|
#define STM32_HAS_GPIOK FALSE
|
||||||
|
#define STM32_GPIO_EN_MASK (RCC_IOPENR_GPIOAEN | \
|
||||||
|
RCC_IOPENR_GPIOBEN | \
|
||||||
|
RCC_IOPENR_GPIOCEN | \
|
||||||
|
RCC_IOPENR_GPIODEN | \
|
||||||
|
RCC_IOPENR_GPIOFEN)
|
||||||
|
|
||||||
|
/* I2C attributes.*/
|
||||||
|
#define STM32_HAS_I2C1 TRUE
|
||||||
|
#define STM32_HAS_I2C2 TRUE
|
||||||
|
#define STM32_HAS_I2C3 FALSE
|
||||||
|
#define STM32_HAS_I2C4 FALSE
|
||||||
|
|
||||||
|
/* OCTOSPI attributes.*/
|
||||||
|
#define STM32_HAS_OCTOSPI1 FALSE
|
||||||
|
#define STM32_HAS_OCTOSPI2 FALSE
|
||||||
|
|
||||||
|
/* QUADSPI attributes.*/
|
||||||
|
#define STM32_HAS_QUADSPI1 FALSE
|
||||||
|
|
||||||
|
/* RCC attributes.*/
|
||||||
|
#define STM32_RCC_PLL_HAS_Q TRUE
|
||||||
|
|
||||||
|
/* SDMMC attributes.*/
|
||||||
|
#define STM32_HAS_SDMMC1 FALSE
|
||||||
|
#define STM32_HAS_SDMMC2 FALSE
|
||||||
|
|
||||||
|
/* SPI attributes.*/
|
||||||
|
#define STM32_HAS_SPI1 TRUE
|
||||||
|
#define STM32_SPI1_SUPPORTS_I2S TRUE
|
||||||
|
|
||||||
|
#define STM32_HAS_SPI2 TRUE
|
||||||
|
#define STM32_SPI2_SUPPORTS_I2S FALSE
|
||||||
|
|
||||||
|
#define STM32_HAS_SPI3 FALSE
|
||||||
|
#define STM32_HAS_SPI4 FALSE
|
||||||
|
#define STM32_HAS_SPI5 FALSE
|
||||||
|
#define STM32_HAS_SPI6 FALSE
|
||||||
|
|
||||||
|
/* TIM attributes.*/
|
||||||
|
#define STM32_TIM_MAX_CHANNELS 6
|
||||||
|
|
||||||
|
#define STM32_HAS_TIM1 TRUE
|
||||||
|
#define STM32_TIM1_IS_32BITS FALSE
|
||||||
|
#define STM32_TIM1_CHANNELS 6
|
||||||
|
|
||||||
|
#define STM32_HAS_TIM2 TRUE
|
||||||
|
#define STM32_TIM2_IS_32BITS TRUE
|
||||||
|
#define STM32_TIM2_CHANNELS 4
|
||||||
|
|
||||||
|
#define STM32_HAS_TIM3 TRUE
|
||||||
|
#define STM32_TIM3_IS_32BITS FALSE
|
||||||
|
#define STM32_TIM3_CHANNELS 4
|
||||||
|
|
||||||
|
#define STM32_HAS_TIM14 TRUE
|
||||||
|
#define STM32_TIM14_IS_32BITS FALSE
|
||||||
|
#define STM32_TIM14_CHANNELS 1
|
||||||
|
|
||||||
|
#define STM32_HAS_TIM16 TRUE
|
||||||
|
#define STM32_TIM16_IS_32BITS FALSE
|
||||||
|
#define STM32_TIM16_CHANNELS 1
|
||||||
|
|
||||||
|
#define STM32_HAS_TIM17 TRUE
|
||||||
|
#define STM32_TIM17_IS_32BITS FALSE
|
||||||
|
#define STM32_TIM17_CHANNELS 1
|
||||||
|
|
||||||
|
#define STM32_HAS_TIM4 FALSE
|
||||||
|
#define STM32_HAS_TIM5 FALSE
|
||||||
|
#define STM32_HAS_TIM6 FALSE
|
||||||
|
#define STM32_HAS_TIM7 FALSE
|
||||||
|
#define STM32_HAS_TIM8 FALSE
|
||||||
|
#define STM32_HAS_TIM9 FALSE
|
||||||
|
#define STM32_HAS_TIM10 FALSE
|
||||||
|
#define STM32_HAS_TIM11 FALSE
|
||||||
|
#define STM32_HAS_TIM12 FALSE
|
||||||
|
#define STM32_HAS_TIM13 FALSE
|
||||||
|
#define STM32_HAS_TIM15 FALSE
|
||||||
|
#define STM32_HAS_TIM18 FALSE
|
||||||
|
#define STM32_HAS_TIM19 FALSE
|
||||||
|
#define STM32_HAS_TIM20 FALSE
|
||||||
|
#define STM32_HAS_TIM21 FALSE
|
||||||
|
#define STM32_HAS_TIM22 FALSE
|
||||||
|
|
||||||
|
/* USART attributes.*/
|
||||||
|
#define STM32_HAS_USART1 TRUE
|
||||||
|
#define STM32_HAS_USART2 TRUE
|
||||||
|
#define STM32_HAS_USART3 FALSE
|
||||||
|
#define STM32_HAS_UART4 FALSE
|
||||||
|
#define STM32_HAS_UART5 FALSE
|
||||||
|
#define STM32_HAS_USART6 FALSE
|
||||||
|
#define STM32_HAS_UART7 FALSE
|
||||||
|
#define STM32_HAS_UART8 FALSE
|
||||||
|
#define STM32_HAS_LPUART1 TRUE
|
||||||
|
|
||||||
|
/* USB attributes.*/
|
||||||
|
#define STM32_HAS_OTG1 FALSE
|
||||||
|
#define STM32_HAS_OTG2 FALSE
|
||||||
|
#define STM32_HAS_USB FALSE
|
||||||
|
|
||||||
|
/* IWDG attributes.*/
|
||||||
|
#define STM32_HAS_IWDG TRUE
|
||||||
|
#define STM32_IWDG_IS_WINDOWED TRUE
|
||||||
|
|
||||||
|
/* LTDC attributes.*/
|
||||||
|
#define STM32_HAS_LTDC FALSE
|
||||||
|
|
||||||
|
/* DMA2D attributes.*/
|
||||||
|
#define STM32_HAS_DMA2D FALSE
|
||||||
|
|
||||||
|
/* FSMC attributes.*/
|
||||||
|
#define STM32_HAS_FSMC FALSE
|
||||||
|
|
||||||
|
/* CRC attributes.*/
|
||||||
|
#define STM32_HAS_CRC FALSE
|
||||||
|
|
||||||
|
/* DCMI attributes.*/
|
||||||
|
#define STM32_HAS_DCMI FALSE
|
||||||
|
|
||||||
|
#endif /* defined(STM32G031xx) */
|
||||||
|
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
/* STM32G070xx. */
|
/* STM32G070xx. */
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
|
@ -117,6 +294,8 @@
|
||||||
#define STM32_HAS_CAN1 FALSE
|
#define STM32_HAS_CAN1 FALSE
|
||||||
#define STM32_HAS_CAN2 FALSE
|
#define STM32_HAS_CAN2 FALSE
|
||||||
#define STM32_HAS_CAN3 FALSE
|
#define STM32_HAS_CAN3 FALSE
|
||||||
|
#define STM32_HAS_FDCAN1 FALSE
|
||||||
|
#define STM32_HAS_FDCAN2 FALSE
|
||||||
|
|
||||||
/* DAC attributes.*/
|
/* DAC attributes.*/
|
||||||
#define STM32_HAS_DAC1_CH1 FALSE
|
#define STM32_HAS_DAC1_CH1 FALSE
|
||||||
|
@ -282,7 +461,7 @@
|
||||||
#endif /* defined(STM32G070xx) */
|
#endif /* defined(STM32G070xx) */
|
||||||
|
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
/* STM32G071xx STM32G081xx. */
|
/* STM32G071xx, STM32G081xx. */
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
|
|
||||||
#if defined(STM32G071xx) || defined(STM32G081xx)
|
#if defined(STM32G071xx) || defined(STM32G081xx)
|
||||||
|
@ -297,6 +476,8 @@
|
||||||
#define STM32_HAS_CAN1 FALSE
|
#define STM32_HAS_CAN1 FALSE
|
||||||
#define STM32_HAS_CAN2 FALSE
|
#define STM32_HAS_CAN2 FALSE
|
||||||
#define STM32_HAS_CAN3 FALSE
|
#define STM32_HAS_CAN3 FALSE
|
||||||
|
#define STM32_HAS_FDCAN1 FALSE
|
||||||
|
#define STM32_HAS_FDCAN2 FALSE
|
||||||
|
|
||||||
/* DAC attributes.*/
|
/* DAC attributes.*/
|
||||||
#define STM32_HAS_DAC1_CH1 TRUE
|
#define STM32_HAS_DAC1_CH1 TRUE
|
||||||
|
@ -318,7 +499,7 @@
|
||||||
#define STM32_EXTI_HAS_CR TRUE
|
#define STM32_EXTI_HAS_CR TRUE
|
||||||
#define STM32_EXTI_SEPARATE_RF TRUE
|
#define STM32_EXTI_SEPARATE_RF TRUE
|
||||||
#define STM32_EXTI_HAS_GROUP2 FALSE
|
#define STM32_EXTI_HAS_GROUP2 FALSE
|
||||||
#define STM32_EXTI_NUM_LINES 33
|
#define STM32_EXTI_NUM_LINES 36
|
||||||
#define STM32_EXTI_IMR1_MASK 0xFFF80000U
|
#define STM32_EXTI_IMR1_MASK 0xFFF80000U
|
||||||
#define STM32_EXTI_IMR2_MASK 0xFFFFFFFFU
|
#define STM32_EXTI_IMR2_MASK 0xFFFFFFFFU
|
||||||
|
|
||||||
|
@ -465,6 +646,204 @@
|
||||||
|
|
||||||
#endif /* defined(STM32G071xx) || defined(STM32G081xx) */
|
#endif /* defined(STM32G071xx) || defined(STM32G081xx) */
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* STM32G0B1xx, STM32G0C1xx. */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
#if defined(STM32G0B1xx) || defined(STM32G0C1xx)
|
||||||
|
|
||||||
|
/* ADC attributes.*/
|
||||||
|
#define STM32_HAS_ADC1 TRUE
|
||||||
|
#define STM32_HAS_ADC2 FALSE
|
||||||
|
#define STM32_HAS_ADC3 FALSE
|
||||||
|
#define STM32_HAS_ADC4 FALSE
|
||||||
|
|
||||||
|
/* CAN attributes.*/
|
||||||
|
#define STM32_HAS_CAN1 FALSE
|
||||||
|
#define STM32_HAS_CAN2 FALSE
|
||||||
|
#define STM32_HAS_CAN3 FALSE
|
||||||
|
#define STM32_HAS_FDCAN1 TRUE
|
||||||
|
#define STM32_HAS_FDCAN2 TRUE
|
||||||
|
|
||||||
|
/* DAC attributes.*/
|
||||||
|
#define STM32_HAS_DAC1_CH1 TRUE
|
||||||
|
#define STM32_HAS_DAC1_CH2 TRUE
|
||||||
|
#define STM32_HAS_DAC2_CH1 FALSE
|
||||||
|
#define STM32_HAS_DAC2_CH2 FALSE
|
||||||
|
|
||||||
|
/* DMA attributes.*/
|
||||||
|
#define STM32_ADVANCED_DMA TRUE
|
||||||
|
#define STM32_DMA_SUPPORTS_DMAMUX TRUE
|
||||||
|
#define STM32_DMA_SUPPORTS_CSELR FALSE
|
||||||
|
#define STM32_DMA1_NUM_CHANNELS 7
|
||||||
|
#define STM32_DMA2_NUM_CHANNELS 5
|
||||||
|
|
||||||
|
/* ETH attributes.*/
|
||||||
|
#define STM32_HAS_ETH FALSE
|
||||||
|
|
||||||
|
/* EXTI attributes.*/
|
||||||
|
#define STM32_EXTI_HAS_CR TRUE
|
||||||
|
#define STM32_EXTI_SEPARATE_RF TRUE
|
||||||
|
#define STM32_EXTI_HAS_GROUP2 FALSE
|
||||||
|
#define STM32_EXTI_NUM_LINES 36
|
||||||
|
#define STM32_EXTI_IMR1_MASK 0xFFF80000U
|
||||||
|
#define STM32_EXTI_IMR2_MASK 0xFFFFFFFFU
|
||||||
|
|
||||||
|
/* Flash attributes.*/
|
||||||
|
#define STM32_FLASH_NUMBER_OF_BANKS 2
|
||||||
|
|
||||||
|
/* GPIO attributes.*/
|
||||||
|
#define STM32_HAS_GPIOA TRUE
|
||||||
|
#define STM32_HAS_GPIOB TRUE
|
||||||
|
#define STM32_HAS_GPIOC TRUE
|
||||||
|
#define STM32_HAS_GPIOD TRUE
|
||||||
|
#define STM32_HAS_GPIOE TRUE
|
||||||
|
#define STM32_HAS_GPIOF TRUE
|
||||||
|
#define STM32_HAS_GPIOG FALSE
|
||||||
|
#define STM32_HAS_GPIOH FALSE
|
||||||
|
#define STM32_HAS_GPIOI FALSE
|
||||||
|
#define STM32_HAS_GPIOJ FALSE
|
||||||
|
#define STM32_HAS_GPIOK FALSE
|
||||||
|
#define STM32_GPIO_EN_MASK (RCC_IOPENR_GPIOAEN | \
|
||||||
|
RCC_IOPENR_GPIOBEN | \
|
||||||
|
RCC_IOPENR_GPIOCEN | \
|
||||||
|
RCC_IOPENR_GPIODEN | \
|
||||||
|
RCC_IOPENR_GPIOEEN | \
|
||||||
|
RCC_IOPENR_GPIOFEN)
|
||||||
|
|
||||||
|
/* I2C attributes.*/
|
||||||
|
#define STM32_HAS_I2C1 TRUE
|
||||||
|
#define STM32_HAS_I2C2 TRUE
|
||||||
|
#define STM32_HAS_I2C3 TRUE
|
||||||
|
#define STM32_HAS_I2C4 FALSE
|
||||||
|
|
||||||
|
/* OCTOSPI attributes.*/
|
||||||
|
#define STM32_HAS_OCTOSPI1 FALSE
|
||||||
|
#define STM32_HAS_OCTOSPI2 FALSE
|
||||||
|
|
||||||
|
/* QUADSPI attributes.*/
|
||||||
|
#define STM32_HAS_QUADSPI1 FALSE
|
||||||
|
|
||||||
|
/* RCC attributes.*/
|
||||||
|
#define STM32_RCC_PLL_HAS_Q TRUE
|
||||||
|
|
||||||
|
/* SDMMC attributes.*/
|
||||||
|
#define STM32_HAS_SDMMC1 FALSE
|
||||||
|
#define STM32_HAS_SDMMC2 FALSE
|
||||||
|
|
||||||
|
/* SPI attributes.*/
|
||||||
|
#define STM32_HAS_SPI1 TRUE
|
||||||
|
#define STM32_SPI1_SUPPORTS_I2S TRUE
|
||||||
|
|
||||||
|
#define STM32_HAS_SPI2 TRUE
|
||||||
|
#define STM32_SPI2_SUPPORTS_I2S TRUE
|
||||||
|
|
||||||
|
#define STM32_HAS_SPI3 TRUE
|
||||||
|
#define STM32_SPI3_SUPPORTS_I2S FALSE
|
||||||
|
|
||||||
|
#define STM32_HAS_SPI4 FALSE
|
||||||
|
#define STM32_HAS_SPI5 FALSE
|
||||||
|
#define STM32_HAS_SPI6 FALSE
|
||||||
|
|
||||||
|
/* TIM attributes.*/
|
||||||
|
#define STM32_TIM_MAX_CHANNELS 6
|
||||||
|
|
||||||
|
#define STM32_HAS_TIM1 TRUE
|
||||||
|
#define STM32_TIM1_IS_32BITS FALSE
|
||||||
|
#define STM32_TIM1_CHANNELS 6
|
||||||
|
|
||||||
|
#define STM32_HAS_TIM2 TRUE
|
||||||
|
#define STM32_TIM2_IS_32BITS TRUE
|
||||||
|
#define STM32_TIM2_CHANNELS 4
|
||||||
|
|
||||||
|
#define STM32_HAS_TIM3 TRUE
|
||||||
|
#define STM32_TIM3_IS_32BITS FALSE
|
||||||
|
#define STM32_TIM3_CHANNELS 4
|
||||||
|
|
||||||
|
#define STM32_HAS_TIM4 TRUE
|
||||||
|
#define STM32_TIM4_IS_32BITS FALSE
|
||||||
|
#define STM32_TIM4_CHANNELS 4
|
||||||
|
|
||||||
|
#define STM32_HAS_TIM6 TRUE
|
||||||
|
#define STM32_TIM6_IS_32BITS FALSE
|
||||||
|
#define STM32_TIM6_CHANNELS 0
|
||||||
|
|
||||||
|
#define STM32_HAS_TIM7 TRUE
|
||||||
|
#define STM32_TIM7_IS_32BITS FALSE
|
||||||
|
#define STM32_TIM7_CHANNELS 0
|
||||||
|
|
||||||
|
#define STM32_HAS_TIM14 TRUE
|
||||||
|
#define STM32_TIM14_IS_32BITS FALSE
|
||||||
|
#define STM32_TIM14_CHANNELS 1
|
||||||
|
|
||||||
|
#define STM32_HAS_TIM15 TRUE
|
||||||
|
#define STM32_TIM15_IS_32BITS FALSE
|
||||||
|
#define STM32_TIM15_CHANNELS 2
|
||||||
|
|
||||||
|
#define STM32_HAS_TIM16 TRUE
|
||||||
|
#define STM32_TIM16_IS_32BITS FALSE
|
||||||
|
#define STM32_TIM16_CHANNELS 1
|
||||||
|
|
||||||
|
#define STM32_HAS_TIM17 TRUE
|
||||||
|
#define STM32_TIM17_IS_32BITS FALSE
|
||||||
|
#define STM32_TIM17_CHANNELS 1
|
||||||
|
|
||||||
|
#define STM32_HAS_TIM5 FALSE
|
||||||
|
#define STM32_HAS_TIM8 FALSE
|
||||||
|
#define STM32_HAS_TIM9 FALSE
|
||||||
|
#define STM32_HAS_TIM10 FALSE
|
||||||
|
#define STM32_HAS_TIM11 FALSE
|
||||||
|
#define STM32_HAS_TIM12 FALSE
|
||||||
|
#define STM32_HAS_TIM13 FALSE
|
||||||
|
#define STM32_HAS_TIM18 FALSE
|
||||||
|
#define STM32_HAS_TIM19 FALSE
|
||||||
|
#define STM32_HAS_TIM20 FALSE
|
||||||
|
#define STM32_HAS_TIM21 FALSE
|
||||||
|
#define STM32_HAS_TIM22 FALSE
|
||||||
|
|
||||||
|
/* USART attributes.*/
|
||||||
|
#define STM32_HAS_USART1 TRUE
|
||||||
|
#define STM32_HAS_USART2 TRUE
|
||||||
|
#define STM32_HAS_USART3 TRUE
|
||||||
|
#define STM32_HAS_UART4 TRUE
|
||||||
|
#define STM32_HAS_UART5 TRUE
|
||||||
|
#define STM32_HAS_USART6 TRUE
|
||||||
|
#define STM32_HAS_LPUART1 TRUE
|
||||||
|
#define STM32_HAS_LPUART2 TRUE
|
||||||
|
|
||||||
|
#define STM32_HAS_UART7 FALSE
|
||||||
|
#define STM32_HAS_UART8 FALSE
|
||||||
|
|
||||||
|
/* USB attributes.*/
|
||||||
|
#define STM32_HAS_USB TRUE
|
||||||
|
#define STM32_USB_ACCESS_SCHEME_2x16 TRUE
|
||||||
|
#define STM32_USB_PMA_SIZE 2048
|
||||||
|
#define STM32_USB_HAS_BCDR TRUE
|
||||||
|
|
||||||
|
#define STM32_HAS_OTG1 FALSE
|
||||||
|
#define STM32_HAS_OTG2 FALSE
|
||||||
|
|
||||||
|
/* IWDG attributes.*/
|
||||||
|
#define STM32_HAS_IWDG TRUE
|
||||||
|
#define STM32_IWDG_IS_WINDOWED TRUE
|
||||||
|
|
||||||
|
/* LTDC attributes.*/
|
||||||
|
#define STM32_HAS_LTDC FALSE
|
||||||
|
|
||||||
|
/* DMA2D attributes.*/
|
||||||
|
#define STM32_HAS_DMA2D FALSE
|
||||||
|
|
||||||
|
/* FSMC attributes.*/
|
||||||
|
#define STM32_HAS_FSMC FALSE
|
||||||
|
|
||||||
|
/* CRC attributes.*/
|
||||||
|
#define STM32_HAS_CRC FALSE
|
||||||
|
|
||||||
|
/* DCMI attributes.*/
|
||||||
|
#define STM32_HAS_DCMI FALSE
|
||||||
|
|
||||||
|
#endif /* defined(STM32G0B1xx) || defined(STM32G0C1xx) */
|
||||||
|
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
||||||
#endif /* STM32_REGISTRY_H */
|
#endif /* STM32_REGISTRY_H */
|
||||||
|
|
Loading…
Reference in New Issue