2013-08-04 13:38:53 +00:00
|
|
|
/*
|
2015-01-11 13:56:55 +00:00
|
|
|
ChibiOS - Copyright (C) 2006..2015 Giovanni Di Sirio
|
2013-08-04 13:38:53 +00:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2014-10-02 10:13:13 +00:00
|
|
|
* @file STM32F3xx/stm32_registry.h
|
|
|
|
* @brief STM32F3xx capabilities registry.
|
2013-08-04 13:38:53 +00:00
|
|
|
*
|
|
|
|
* @addtogroup HAL
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _STM32_REGISTRY_H_
|
|
|
|
#define _STM32_REGISTRY_H_
|
|
|
|
|
2014-10-01 13:41:20 +00:00
|
|
|
/**
|
|
|
|
* @brief Sub-family identifier.
|
|
|
|
*/
|
|
|
|
#if !defined(STM32F3XX) || defined(__DOXYGEN__)
|
|
|
|
#define STM32F3XX
|
|
|
|
#endif
|
|
|
|
|
2015-12-14 14:38:16 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Common features. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2013-08-04 13:38:53 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Platform capabilities. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/**
|
2014-09-28 08:06:08 +00:00
|
|
|
* @name STM32F3xx capabilities
|
2013-08-04 13:38:53 +00:00
|
|
|
* @{
|
|
|
|
*/
|
2014-09-28 08:06:08 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* STM32F303xC. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
#if defined(STM32F303xC) || defined(__DOXYGEN__)
|
2013-08-04 13:38:53 +00:00
|
|
|
/* ADC attributes.*/
|
2013-08-17 15:32:41 +00:00
|
|
|
#define STM32_HAS_ADC1 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC1_HANDLER Vector88
|
|
|
|
#define STM32_ADC1_NUMBER 18
|
|
|
|
#define STM32_ADC1_DMA_MSK (STM32_DMA_STREAM_ID_MSK(1, 1))
|
|
|
|
#define STM32_ADC1_DMA_CHN 0x00000000
|
|
|
|
|
2013-08-17 15:32:41 +00:00
|
|
|
#define STM32_HAS_ADC2 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC2_HANDLER Vector88
|
|
|
|
#define STM32_ADC2_NUMBER 18
|
|
|
|
#define STM32_ADC2_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 1) |\
|
|
|
|
STM32_DMA_STREAM_ID_MSK(2, 3))
|
|
|
|
#define STM32_ADC2_DMA_CHN 0x00000000
|
|
|
|
|
2013-08-17 15:32:41 +00:00
|
|
|
#define STM32_HAS_ADC3 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC3_HANDLER VectorFC
|
|
|
|
#define STM32_ADC3_NUMBER 47
|
|
|
|
#define STM32_ADC3_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 5))
|
|
|
|
#define STM32_ADC3_DMA_CHN 0x00000000
|
|
|
|
|
2013-08-17 15:32:41 +00:00
|
|
|
#define STM32_HAS_ADC4 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC4_HANDLER Vector134
|
|
|
|
#define STM32_ADC4_NUMBER 61
|
|
|
|
#define STM32_ADC4_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 2) |\
|
|
|
|
STM32_DMA_STREAM_ID_MSK(2, 4))
|
|
|
|
#define STM32_ADC4_DMA_CHN 0x00000000
|
2013-08-04 13:38:53 +00:00
|
|
|
|
2013-08-17 15:32:41 +00:00
|
|
|
#define STM32_HAS_SDADC1 FALSE
|
|
|
|
#define STM32_HAS_SDADC2 FALSE
|
|
|
|
#define STM32_HAS_SDADC3 FALSE
|
2013-08-04 13:38:53 +00:00
|
|
|
|
|
|
|
/* CAN attributes.*/
|
2013-08-17 15:32:41 +00:00
|
|
|
#define STM32_HAS_CAN1 TRUE
|
|
|
|
#define STM32_HAS_CAN2 FALSE
|
|
|
|
#define STM32_CAN_MAX_FILTERS 14
|
2013-08-04 13:38:53 +00:00
|
|
|
|
|
|
|
/* DAC attributes.*/
|
2015-05-13 11:31:25 +00:00
|
|
|
#define STM32_HAS_DAC1_CH1 TRUE
|
|
|
|
#define STM32_DAC_DAC1_CH1_DMA_STREAM STM32_DMA_STREAM_ID(2, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC1_CH2 TRUE
|
|
|
|
#define STM32_DAC_DAC1_CH2_DMA_STREAM STM32_DMA_STREAM_ID(2, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC2_CH1 FALSE
|
|
|
|
#define STM32_HAS_DAC2_CH2 FALSE
|
|
|
|
|
2013-08-04 13:38:53 +00:00
|
|
|
/* DMA attributes.*/
|
2013-08-17 15:32:41 +00:00
|
|
|
#define STM32_ADVANCED_DMA FALSE
|
2015-09-21 11:01:37 +00:00
|
|
|
#define STM32_DMA_SUPPORTS_CSELR FALSE
|
|
|
|
|
|
|
|
#define STM32_DMA1_NUM_CHANNELS 7
|
|
|
|
#define STM32_DMA1_CH1_HANDLER Vector6C
|
|
|
|
#define STM32_DMA1_CH2_HANDLER Vector70
|
|
|
|
#define STM32_DMA1_CH3_HANDLER Vector74
|
|
|
|
#define STM32_DMA1_CH4_HANDLER Vector78
|
|
|
|
#define STM32_DMA1_CH5_HANDLER Vector7C
|
|
|
|
#define STM32_DMA1_CH6_HANDLER Vector80
|
|
|
|
#define STM32_DMA1_CH7_HANDLER Vector84
|
|
|
|
#define STM32_DMA1_CH1_NUMBER 11
|
|
|
|
#define STM32_DMA1_CH2_NUMBER 12
|
|
|
|
#define STM32_DMA1_CH3_NUMBER 13
|
|
|
|
#define STM32_DMA1_CH4_NUMBER 14
|
|
|
|
#define STM32_DMA1_CH5_NUMBER 15
|
|
|
|
#define STM32_DMA1_CH6_NUMBER 16
|
|
|
|
#define STM32_DMA1_CH7_NUMBER 17
|
|
|
|
|
|
|
|
#define STM32_DMA2_NUM_CHANNELS 5
|
|
|
|
#define STM32_DMA2_CH1_HANDLER Vector120
|
|
|
|
#define STM32_DMA2_CH2_HANDLER Vector124
|
|
|
|
#define STM32_DMA2_CH3_HANDLER Vector128
|
|
|
|
#define STM32_DMA2_CH4_HANDLER Vector12C
|
|
|
|
#define STM32_DMA2_CH5_HANDLER Vector130
|
|
|
|
#define STM32_DMA2_CH1_NUMBER 56
|
|
|
|
#define STM32_DMA2_CH2_NUMBER 57
|
|
|
|
#define STM32_DMA2_CH3_NUMBER 58
|
|
|
|
#define STM32_DMA2_CH4_NUMBER 59
|
|
|
|
#define STM32_DMA2_CH5_NUMBER 60
|
2013-08-04 13:38:53 +00:00
|
|
|
|
|
|
|
/* ETH attributes.*/
|
2013-08-17 15:32:41 +00:00
|
|
|
#define STM32_HAS_ETH FALSE
|
2013-08-04 13:38:53 +00:00
|
|
|
|
|
|
|
/* EXTI attributes.*/
|
2015-07-28 11:44:32 +00:00
|
|
|
#define STM32_EXTI_NUM_LINES 34
|
|
|
|
#define STM32_EXTI_IMR_MASK 0x1F800000U
|
|
|
|
#define STM32_EXTI_IMR2_MASK 0xFFFFFFFCU
|
2013-08-04 13:38:53 +00:00
|
|
|
|
|
|
|
/* GPIO attributes.*/
|
2013-08-17 15:32:41 +00:00
|
|
|
#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
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_GPIOJ FALSE
|
|
|
|
#define STM32_HAS_GPIOK FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_GPIO_EN_MASK (RCC_AHBENR_GPIOAEN | \
|
|
|
|
RCC_AHBENR_GPIOBEN | \
|
|
|
|
RCC_AHBENR_GPIOCEN | \
|
|
|
|
RCC_AHBENR_GPIODEN | \
|
|
|
|
RCC_AHBENR_GPIOEEN | \
|
|
|
|
RCC_AHBENR_GPIOFEN)
|
2013-08-04 13:38:53 +00:00
|
|
|
/* I2C attributes.*/
|
2013-08-17 15:32:41 +00:00
|
|
|
#define STM32_HAS_I2C1 TRUE
|
|
|
|
#define STM32_I2C_I2C1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
#define STM32_I2C_I2C1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C2 TRUE
|
|
|
|
#define STM32_I2C_I2C2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_I2C_I2C2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C3 FALSE
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_I2C4 FALSE
|
2013-08-04 13:38:53 +00:00
|
|
|
|
|
|
|
/* RTC attributes.*/
|
2013-08-17 15:32:41 +00:00
|
|
|
#define STM32_HAS_RTC TRUE
|
|
|
|
#define STM32_RTC_HAS_SUBSECONDS TRUE
|
2014-07-07 13:00:34 +00:00
|
|
|
#define STM32_RTC_HAS_PERIODIC_WAKEUPS TRUE
|
|
|
|
#define STM32_RTC_NUM_ALARMS 1
|
|
|
|
#define STM32_RTC_HAS_INTERRUPTS FALSE
|
2013-08-04 13:38:53 +00:00
|
|
|
|
|
|
|
/* SDIO attributes.*/
|
2013-08-17 15:32:41 +00:00
|
|
|
#define STM32_HAS_SDIO FALSE
|
2013-08-04 13:38:53 +00:00
|
|
|
|
|
|
|
/* SPI attributes.*/
|
2013-08-17 15:32:41 +00:00
|
|
|
#define STM32_HAS_SPI1 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI1_SUPPORTS_I2S FALSE
|
2013-08-17 15:32:41 +00:00
|
|
|
#define STM32_SPI_SPI1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
#define STM32_SPI_SPI1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI2 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI2_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI2_I2S_FULLDUPLEX TRUE
|
2013-08-17 15:32:41 +00:00
|
|
|
#define STM32_SPI_SPI2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
#define STM32_SPI_SPI2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI3 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI3_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI3_I2S_FULLDUPLEX TRUE
|
2013-08-17 15:32:41 +00:00
|
|
|
#define STM32_SPI_SPI3_RX_DMA_STREAM STM32_DMA_STREAM_ID(2, 1)
|
|
|
|
#define STM32_SPI_SPI3_TX_DMA_STREAM STM32_DMA_STREAM_ID(2, 2)
|
2013-08-04 13:38:53 +00:00
|
|
|
|
2013-12-03 15:17:11 +00:00
|
|
|
#define STM32_HAS_SPI4 FALSE
|
|
|
|
#define STM32_HAS_SPI5 FALSE
|
|
|
|
#define STM32_HAS_SPI6 FALSE
|
|
|
|
|
2013-08-04 13:38:53 +00:00
|
|
|
/* TIM attributes.*/
|
2013-08-17 15:32:41 +00:00
|
|
|
#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_TIM8 TRUE
|
|
|
|
#define STM32_TIM8_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM8_CHANNELS 6
|
|
|
|
|
|
|
|
#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
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_TIM16_CHANNELS 1
|
2013-08-17 15:32:41 +00:00
|
|
|
|
|
|
|
#define STM32_HAS_TIM17 TRUE
|
|
|
|
#define STM32_TIM17_IS_32BITS FALSE
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_TIM17_CHANNELS 1
|
2013-08-17 15:32:41 +00:00
|
|
|
|
|
|
|
#define STM32_HAS_TIM5 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_TIM14 FALSE
|
|
|
|
#define STM32_HAS_TIM18 FALSE
|
|
|
|
#define STM32_HAS_TIM19 FALSE
|
2015-07-26 06:17:10 +00:00
|
|
|
#define STM32_HAS_TIM20 FALSE
|
|
|
|
#define STM32_HAS_TIM21 FALSE
|
|
|
|
#define STM32_HAS_TIM22 FALSE
|
2013-08-04 13:38:53 +00:00
|
|
|
|
|
|
|
/* USART attributes.*/
|
2013-08-17 15:32:41 +00:00
|
|
|
#define STM32_HAS_USART1 TRUE
|
|
|
|
#define STM32_UART_USART1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_UART_USART1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART2 TRUE
|
|
|
|
#define STM32_UART_USART2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
#define STM32_UART_USART2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART3 TRUE
|
|
|
|
#define STM32_UART_USART3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
#define STM32_UART_USART3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
|
|
|
|
#define STM32_HAS_UART4 TRUE
|
|
|
|
#define STM32_UART_UART4_RX_DMA_STREAM STM32_DMA_STREAM_ID(2, 3)
|
|
|
|
#define STM32_UART_UART4_TX_DMA_STREAM STM32_DMA_STREAM_ID(2, 5)
|
|
|
|
|
|
|
|
#define STM32_HAS_UART5 TRUE
|
|
|
|
|
|
|
|
#define STM32_HAS_USART6 FALSE
|
2015-11-28 10:55:48 +00:00
|
|
|
#define STM32_HAS_UART7 FALSE
|
|
|
|
#define STM32_HAS_UART8 FALSE
|
|
|
|
#define STM32_HAS_LPUART1 FALSE
|
2013-08-04 13:38:53 +00:00
|
|
|
|
|
|
|
/* USB attributes.*/
|
2013-08-17 15:32:41 +00:00
|
|
|
#define STM32_HAS_USB TRUE
|
2014-12-21 09:32:52 +00:00
|
|
|
#define STM32_USB_ACCESS_SCHEME_2x16 FALSE
|
|
|
|
#define STM32_USB_PMA_SIZE 512
|
2014-12-20 16:53:05 +00:00
|
|
|
#define STM32_USB_HAS_BCDR FALSE
|
2013-08-17 15:32:41 +00:00
|
|
|
#define STM32_HAS_OTG1 FALSE
|
|
|
|
#define STM32_HAS_OTG2 FALSE
|
2015-06-26 08:15:18 +00:00
|
|
|
|
2015-12-03 15:16:07 +00:00
|
|
|
/* IWDG attributes.*/
|
|
|
|
#define STM32_HAS_IWDG TRUE
|
|
|
|
#define STM32_IWDG_IS_WINDOWED TRUE
|
|
|
|
|
2015-06-26 08:15:18 +00:00
|
|
|
/* LTDC attributes.*/
|
|
|
|
#define STM32_HAS_LTDC FALSE
|
|
|
|
|
|
|
|
/* DMA2D attributes.*/
|
|
|
|
#define STM32_HAS_DMA2D FALSE
|
|
|
|
|
|
|
|
/* FSMC attributes.*/
|
|
|
|
#define STM32_HAS_FSMC FALSE
|
2015-07-04 07:17:45 +00:00
|
|
|
|
|
|
|
/* CRC attributes.*/
|
|
|
|
#define STM32_HAS_CRC TRUE
|
|
|
|
#define STM32_CRC_PROGRAMMABLE TRUE
|
2014-09-28 08:06:08 +00:00
|
|
|
#endif /* defined(STM32F303xC) */
|
|
|
|
|
2015-12-12 16:26:56 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* STM32F303xE. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
#if defined(STM32F303xE)
|
|
|
|
/* ADC attributes.*/
|
|
|
|
#define STM32_HAS_ADC1 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC1_HANDLER Vector88
|
|
|
|
#define STM32_ADC1_NUMBER 18
|
|
|
|
#define STM32_ADC1_DMA_MSK (STM32_DMA_STREAM_ID_MSK(1, 1))
|
|
|
|
#define STM32_ADC1_DMA_CHN 0x00000000
|
|
|
|
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_HAS_ADC2 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC2_HANDLER Vector88
|
|
|
|
#define STM32_ADC2_NUMBER 18
|
|
|
|
#define STM32_ADC2_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 1) |\
|
|
|
|
STM32_DMA_STREAM_ID_MSK(2, 3))
|
|
|
|
#define STM32_ADC2_DMA_CHN 0x00000000
|
|
|
|
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_HAS_ADC3 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC3_HANDLER VectorFC
|
|
|
|
#define STM32_ADC3_NUMBER 47
|
|
|
|
#define STM32_ADC3_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 5))
|
|
|
|
#define STM32_ADC3_DMA_CHN 0x00000000
|
|
|
|
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_HAS_ADC4 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC4_HANDLER Vector134
|
|
|
|
#define STM32_ADC4_NUMBER 61
|
|
|
|
#define STM32_ADC4_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 2) |\
|
|
|
|
STM32_DMA_STREAM_ID_MSK(2, 4))
|
|
|
|
#define STM32_ADC4_DMA_CHN 0x00000000
|
2015-12-12 16:26:56 +00:00
|
|
|
|
|
|
|
#define STM32_HAS_SDADC1 FALSE
|
|
|
|
#define STM32_HAS_SDADC2 FALSE
|
|
|
|
#define STM32_HAS_SDADC3 FALSE
|
|
|
|
|
|
|
|
/* CAN attributes.*/
|
|
|
|
#define STM32_HAS_CAN1 TRUE
|
|
|
|
#define STM32_HAS_CAN2 FALSE
|
|
|
|
#define STM32_CAN_MAX_FILTERS 14
|
|
|
|
|
|
|
|
/* DAC attributes.*/
|
|
|
|
#define STM32_HAS_DAC1_CH1 TRUE
|
|
|
|
#define STM32_DAC_DAC1_CH1_DMA_STREAM STM32_DMA_STREAM_ID(2, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC1_CH2 TRUE
|
|
|
|
#define STM32_DAC_DAC1_CH2_DMA_STREAM STM32_DMA_STREAM_ID(2, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC2_CH1 FALSE
|
|
|
|
#define STM32_HAS_DAC2_CH2 FALSE
|
|
|
|
|
|
|
|
/* DMA attributes.*/
|
|
|
|
#define STM32_ADVANCED_DMA FALSE
|
|
|
|
#define STM32_DMA_SUPPORTS_CSELR FALSE
|
|
|
|
|
|
|
|
#define STM32_DMA1_NUM_CHANNELS 7
|
|
|
|
#define STM32_DMA1_CH1_HANDLER Vector6C
|
|
|
|
#define STM32_DMA1_CH2_HANDLER Vector70
|
|
|
|
#define STM32_DMA1_CH3_HANDLER Vector74
|
|
|
|
#define STM32_DMA1_CH4_HANDLER Vector78
|
|
|
|
#define STM32_DMA1_CH5_HANDLER Vector7C
|
|
|
|
#define STM32_DMA1_CH6_HANDLER Vector80
|
|
|
|
#define STM32_DMA1_CH7_HANDLER Vector84
|
|
|
|
#define STM32_DMA1_CH1_NUMBER 11
|
|
|
|
#define STM32_DMA1_CH2_NUMBER 12
|
|
|
|
#define STM32_DMA1_CH3_NUMBER 13
|
|
|
|
#define STM32_DMA1_CH4_NUMBER 14
|
|
|
|
#define STM32_DMA1_CH5_NUMBER 15
|
|
|
|
#define STM32_DMA1_CH6_NUMBER 16
|
|
|
|
#define STM32_DMA1_CH7_NUMBER 17
|
|
|
|
|
|
|
|
#define STM32_DMA2_NUM_CHANNELS 5
|
|
|
|
#define STM32_DMA2_CH1_HANDLER Vector120
|
|
|
|
#define STM32_DMA2_CH2_HANDLER Vector124
|
|
|
|
#define STM32_DMA2_CH3_HANDLER Vector128
|
|
|
|
#define STM32_DMA2_CH4_HANDLER Vector12C
|
|
|
|
#define STM32_DMA2_CH5_HANDLER Vector130
|
|
|
|
#define STM32_DMA2_CH1_NUMBER 56
|
|
|
|
#define STM32_DMA2_CH2_NUMBER 57
|
|
|
|
#define STM32_DMA2_CH3_NUMBER 58
|
|
|
|
#define STM32_DMA2_CH4_NUMBER 59
|
|
|
|
#define STM32_DMA2_CH5_NUMBER 60
|
|
|
|
|
|
|
|
/* ETH attributes.*/
|
|
|
|
#define STM32_HAS_ETH FALSE
|
|
|
|
|
|
|
|
/* EXTI attributes.*/
|
|
|
|
#define STM32_EXTI_NUM_LINES 34
|
|
|
|
#define STM32_EXTI_IMR_MASK 0x1F800000U
|
|
|
|
#define STM32_EXTI_IMR2_MASK 0xFFFFFFFCU
|
|
|
|
|
|
|
|
/* 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 TRUE
|
|
|
|
#define STM32_HAS_GPIOH TRUE
|
|
|
|
#define STM32_HAS_GPIOI FALSE
|
|
|
|
#define STM32_HAS_GPIOJ FALSE
|
|
|
|
#define STM32_HAS_GPIOK FALSE
|
|
|
|
#define STM32_GPIO_EN_MASK (RCC_AHBENR_GPIOAEN | \
|
|
|
|
RCC_AHBENR_GPIOBEN | \
|
|
|
|
RCC_AHBENR_GPIOCEN | \
|
|
|
|
RCC_AHBENR_GPIODEN | \
|
|
|
|
RCC_AHBENR_GPIOEEN | \
|
|
|
|
RCC_AHBENR_GPIOFEN | \
|
|
|
|
RCC_AHBENR_GPIOGEN | \
|
|
|
|
RCC_AHBENR_GPIOHEN)
|
|
|
|
|
|
|
|
/* I2C attributes.*/
|
|
|
|
#define STM32_HAS_I2C1 TRUE
|
|
|
|
#define STM32_I2C_I2C1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
#define STM32_I2C_I2C1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C2 TRUE
|
|
|
|
#define STM32_I2C_I2C2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_I2C_I2C2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C3 TRUE
|
|
|
|
#define STM32_I2C_I2C3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
#define STM32_I2C_I2C3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 1)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C4 FALSE
|
|
|
|
|
|
|
|
/* RTC attributes.*/
|
|
|
|
#define STM32_HAS_RTC TRUE
|
|
|
|
#define STM32_RTC_HAS_SUBSECONDS TRUE
|
|
|
|
#define STM32_RTC_HAS_PERIODIC_WAKEUPS TRUE
|
|
|
|
#define STM32_RTC_NUM_ALARMS 2
|
|
|
|
#define STM32_RTC_HAS_INTERRUPTS FALSE
|
|
|
|
|
|
|
|
/* SDIO attributes.*/
|
|
|
|
#define STM32_HAS_SDIO FALSE
|
|
|
|
|
|
|
|
/* SPI attributes.*/
|
|
|
|
#define STM32_HAS_SPI1 TRUE
|
|
|
|
#define STM32_SPI1_SUPPORTS_I2S FALSE
|
|
|
|
#define STM32_SPI_SPI1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
#define STM32_SPI_SPI1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI2 TRUE
|
|
|
|
#define STM32_SPI2_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI2_I2S_FULLDUPLEX TRUE
|
|
|
|
#define STM32_SPI_SPI2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
#define STM32_SPI_SPI2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI3 TRUE
|
|
|
|
#define STM32_SPI3_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI3_I2S_FULLDUPLEX TRUE
|
|
|
|
#define STM32_SPI_SPI3_RX_DMA_STREAM STM32_DMA_STREAM_ID(2, 1)
|
|
|
|
#define STM32_SPI_SPI3_TX_DMA_STREAM STM32_DMA_STREAM_ID(2, 2)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI4 TRUE
|
|
|
|
#define STM32_SPI4_SUPPORTS_I2S FALSE
|
|
|
|
#define STM32_SPI_SPI4_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
#define STM32_SPI_SPI4_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
|
|
|
|
#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_TIM8 TRUE
|
|
|
|
#define STM32_TIM8_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM8_CHANNELS 6
|
|
|
|
|
|
|
|
#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_TIM20 TRUE
|
|
|
|
#define STM32_TIM20_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM20_CHANNELS 4
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM5 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_TIM14 FALSE
|
|
|
|
#define STM32_HAS_TIM18 FALSE
|
|
|
|
#define STM32_HAS_TIM19 FALSE
|
|
|
|
#define STM32_HAS_TIM21 FALSE
|
|
|
|
#define STM32_HAS_TIM22 FALSE
|
|
|
|
|
|
|
|
/* USART attributes.*/
|
|
|
|
#define STM32_HAS_USART1 TRUE
|
|
|
|
#define STM32_UART_USART1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_UART_USART1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART2 TRUE
|
|
|
|
#define STM32_UART_USART2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
#define STM32_UART_USART2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART3 TRUE
|
|
|
|
#define STM32_UART_USART3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
#define STM32_UART_USART3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
|
|
|
|
#define STM32_HAS_UART4 TRUE
|
|
|
|
#define STM32_UART_UART4_RX_DMA_STREAM STM32_DMA_STREAM_ID(2, 3)
|
|
|
|
#define STM32_UART_UART4_TX_DMA_STREAM STM32_DMA_STREAM_ID(2, 5)
|
|
|
|
|
|
|
|
#define STM32_HAS_UART5 TRUE
|
|
|
|
|
|
|
|
#define STM32_HAS_USART6 FALSE
|
|
|
|
#define STM32_HAS_UART7 FALSE
|
|
|
|
#define STM32_HAS_UART8 FALSE
|
|
|
|
#define STM32_HAS_LPUART1 FALSE
|
|
|
|
|
|
|
|
/* USB attributes.*/
|
|
|
|
#define STM32_HAS_USB TRUE
|
|
|
|
#define STM32_USB_ACCESS_SCHEME_2x16 TRUE
|
|
|
|
#define STM32_USB_PMA_SIZE 768
|
|
|
|
#define STM32_USB_HAS_BCDR FALSE
|
|
|
|
#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 TRUE
|
|
|
|
#define STM32_CRC_PROGRAMMABLE TRUE
|
|
|
|
#endif /* defined(STM32F303xE) */
|
|
|
|
|
2014-09-28 08:06:08 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* STM32F303x8. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
#if defined(STM32F303x8)
|
|
|
|
/* ADC attributes.*/
|
|
|
|
#define STM32_HAS_ADC1 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC1_HANDLER Vector88
|
|
|
|
#define STM32_ADC1_NUMBER 18
|
|
|
|
#define STM32_ADC1_DMA_MSK (STM32_DMA_STREAM_ID_MSK(1, 1))
|
|
|
|
#define STM32_ADC1_DMA_CHN 0x00000000
|
|
|
|
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_HAS_ADC2 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC2_HANDLER Vector88
|
|
|
|
#define STM32_ADC2_NUMBER 18
|
|
|
|
#define STM32_ADC2_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 1) |\
|
|
|
|
STM32_DMA_STREAM_ID_MSK(2, 3))
|
|
|
|
#define STM32_ADC2_DMA_CHN 0x00000000
|
|
|
|
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_HAS_ADC3 FALSE
|
|
|
|
#define STM32_HAS_ADC4 FALSE
|
|
|
|
|
|
|
|
#define STM32_HAS_SDADC1 FALSE
|
|
|
|
#define STM32_HAS_SDADC2 FALSE
|
|
|
|
#define STM32_HAS_SDADC3 FALSE
|
|
|
|
|
|
|
|
/* CAN attributes.*/
|
|
|
|
#define STM32_HAS_CAN1 TRUE
|
|
|
|
#define STM32_HAS_CAN2 FALSE
|
|
|
|
#define STM32_CAN_MAX_FILTERS 14
|
|
|
|
|
|
|
|
/* DAC attributes.*/
|
2015-05-13 11:31:25 +00:00
|
|
|
#define STM32_HAS_DAC1_CH1 TRUE
|
|
|
|
#define STM32_DAC_DAC1_CH1_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC1_CH2 TRUE
|
|
|
|
#define STM32_DAC_DAC1_CH2_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC2_CH1 TRUE
|
|
|
|
#define STM32_DAC_DAC2_CH1_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC2_CH2 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* DMA attributes.*/
|
|
|
|
#define STM32_ADVANCED_DMA FALSE
|
2015-09-21 11:01:37 +00:00
|
|
|
#define STM32_DMA_SUPPORTS_CSELR FALSE
|
|
|
|
|
|
|
|
#define STM32_DMA1_NUM_CHANNELS 7
|
|
|
|
#define STM32_DMA1_CH1_HANDLER Vector6C
|
|
|
|
#define STM32_DMA1_CH2_HANDLER Vector70
|
|
|
|
#define STM32_DMA1_CH3_HANDLER Vector74
|
|
|
|
#define STM32_DMA1_CH4_HANDLER Vector78
|
|
|
|
#define STM32_DMA1_CH5_HANDLER Vector7C
|
|
|
|
#define STM32_DMA1_CH6_HANDLER Vector80
|
|
|
|
#define STM32_DMA1_CH7_HANDLER Vector84
|
|
|
|
#define STM32_DMA1_CH1_NUMBER 11
|
|
|
|
#define STM32_DMA1_CH2_NUMBER 12
|
|
|
|
#define STM32_DMA1_CH3_NUMBER 13
|
|
|
|
#define STM32_DMA1_CH4_NUMBER 14
|
|
|
|
#define STM32_DMA1_CH5_NUMBER 15
|
|
|
|
#define STM32_DMA1_CH6_NUMBER 16
|
|
|
|
#define STM32_DMA1_CH7_NUMBER 17
|
|
|
|
|
|
|
|
#define STM32_DMA2_NUM_CHANNELS 0
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* ETH attributes.*/
|
|
|
|
#define STM32_HAS_ETH FALSE
|
|
|
|
|
|
|
|
/* EXTI attributes.*/
|
2015-07-28 11:44:32 +00:00
|
|
|
#define STM32_EXTI_NUM_LINES 34
|
|
|
|
#define STM32_EXTI_IMR_MASK 0x1F800000U
|
|
|
|
#define STM32_EXTI_IMR2_MASK 0xFFFFFFFCU
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* 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
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_GPIOJ FALSE
|
|
|
|
#define STM32_HAS_GPIOK FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_GPIO_EN_MASK (RCC_AHBENR_GPIOAEN | \
|
|
|
|
RCC_AHBENR_GPIOBEN | \
|
|
|
|
RCC_AHBENR_GPIOCEN | \
|
|
|
|
RCC_AHBENR_GPIODEN | \
|
|
|
|
RCC_AHBENR_GPIOFEN)
|
|
|
|
|
|
|
|
/* I2C attributes.*/
|
|
|
|
#define STM32_HAS_I2C1 TRUE
|
|
|
|
#define STM32_I2C_I2C1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
#define STM32_I2C_I2C1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C2 FALSE
|
|
|
|
#define STM32_HAS_I2C3 FALSE
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_I2C4 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* RTC attributes.*/
|
|
|
|
#define STM32_HAS_RTC TRUE
|
|
|
|
#define STM32_RTC_HAS_SUBSECONDS TRUE
|
|
|
|
#define STM32_RTC_HAS_PERIODIC_WAKEUPS TRUE
|
|
|
|
#define STM32_RTC_NUM_ALARMS 2
|
|
|
|
#define STM32_RTC_HAS_INTERRUPTS FALSE
|
|
|
|
|
|
|
|
/* SDIO attributes.*/
|
|
|
|
#define STM32_HAS_SDIO FALSE
|
|
|
|
|
|
|
|
/* SPI attributes.*/
|
|
|
|
#define STM32_HAS_SPI1 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI1_SUPPORTS_I2S FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_SPI_SPI1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
#define STM32_SPI_SPI1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI2 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_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_TIM15 TRUE
|
|
|
|
#define STM32_TIM15_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM15_CHANNELS 2
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM16 TRUE
|
|
|
|
#define STM32_TIM16_IS_32BITS FALSE
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_TIM16_CHANNELS 1
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
#define STM32_HAS_TIM17 TRUE
|
|
|
|
#define STM32_TIM17_IS_32BITS FALSE
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_TIM17_CHANNELS 1
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
#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_TIM14 FALSE
|
|
|
|
#define STM32_HAS_TIM18 FALSE
|
|
|
|
#define STM32_HAS_TIM19 FALSE
|
2015-07-26 06:17:10 +00:00
|
|
|
#define STM32_HAS_TIM20 FALSE
|
|
|
|
#define STM32_HAS_TIM21 FALSE
|
|
|
|
#define STM32_HAS_TIM22 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* USART attributes.*/
|
|
|
|
#define STM32_HAS_USART1 TRUE
|
|
|
|
#define STM32_UART_USART1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_UART_USART1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART2 TRUE
|
|
|
|
#define STM32_UART_USART2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
#define STM32_UART_USART2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART3 TRUE
|
|
|
|
#define STM32_UART_USART3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
#define STM32_UART_USART3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
|
|
|
|
#define STM32_HAS_UART4 FALSE
|
|
|
|
#define STM32_HAS_UART5 FALSE
|
|
|
|
#define STM32_HAS_USART6 FALSE
|
2015-11-28 10:55:48 +00:00
|
|
|
#define STM32_HAS_UART7 FALSE
|
|
|
|
#define STM32_HAS_UART8 FALSE
|
|
|
|
#define STM32_HAS_LPUART1 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* USB attributes.*/
|
|
|
|
#define STM32_HAS_USB FALSE
|
|
|
|
#define STM32_HAS_OTG1 FALSE
|
|
|
|
#define STM32_HAS_OTG2 FALSE
|
2015-06-26 08:15:18 +00:00
|
|
|
|
2015-12-03 15:16:07 +00:00
|
|
|
/* IWDG attributes.*/
|
|
|
|
#define STM32_HAS_IWDG TRUE
|
|
|
|
#define STM32_IWDG_IS_WINDOWED TRUE
|
|
|
|
|
2015-06-26 08:15:18 +00:00
|
|
|
/* LTDC attributes.*/
|
|
|
|
#define STM32_HAS_LTDC FALSE
|
|
|
|
|
|
|
|
/* DMA2D attributes.*/
|
|
|
|
#define STM32_HAS_DMA2D FALSE
|
|
|
|
|
|
|
|
/* FSMC attributes.*/
|
|
|
|
#define STM32_HAS_FSMC FALSE
|
2015-07-04 07:17:45 +00:00
|
|
|
|
|
|
|
/* CRC attributes.*/
|
|
|
|
#define STM32_HAS_CRC TRUE
|
|
|
|
#define STM32_CRC_PROGRAMMABLE TRUE
|
2014-09-28 08:06:08 +00:00
|
|
|
#endif /* defined(STM32F303x8) */
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* STM32F301x8. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
#if defined(STM32F301x8)
|
|
|
|
/* ADC attributes.*/
|
|
|
|
#define STM32_HAS_ADC1 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC1_HANDLER Vector88
|
|
|
|
#define STM32_ADC1_NUMBER 18
|
|
|
|
#define STM32_ADC1_DMA_MSK (STM32_DMA_STREAM_ID_MSK(1, 1))
|
|
|
|
#define STM32_ADC1_DMA_CHN 0x00000000
|
|
|
|
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_HAS_ADC2 FALSE
|
|
|
|
#define STM32_HAS_ADC3 FALSE
|
|
|
|
#define STM32_HAS_ADC4 FALSE
|
|
|
|
|
|
|
|
#define STM32_HAS_SDADC1 FALSE
|
|
|
|
#define STM32_HAS_SDADC2 FALSE
|
|
|
|
#define STM32_HAS_SDADC3 FALSE
|
|
|
|
|
|
|
|
/* CAN attributes.*/
|
|
|
|
#define STM32_HAS_CAN1 FALSE
|
|
|
|
#define STM32_HAS_CAN2 FALSE
|
|
|
|
#define STM32_CAN_MAX_FILTERS 14
|
|
|
|
|
|
|
|
/* DAC attributes.*/
|
2015-05-13 11:31:25 +00:00
|
|
|
#define STM32_HAS_DAC1_CH1 TRUE
|
|
|
|
#define STM32_DAC_DAC1_CH1_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC1_CH2 FALSE
|
|
|
|
#define STM32_HAS_DAC2_CH1 FALSE
|
|
|
|
#define STM32_HAS_DAC2_CH2 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* DMA attributes.*/
|
|
|
|
#define STM32_ADVANCED_DMA FALSE
|
2015-09-21 11:01:37 +00:00
|
|
|
#define STM32_DMA_SUPPORTS_CSELR FALSE
|
|
|
|
|
|
|
|
#define STM32_DMA1_NUM_CHANNELS 7
|
|
|
|
#define STM32_DMA1_CH1_HANDLER Vector6C
|
|
|
|
#define STM32_DMA1_CH2_HANDLER Vector70
|
|
|
|
#define STM32_DMA1_CH3_HANDLER Vector74
|
|
|
|
#define STM32_DMA1_CH4_HANDLER Vector78
|
|
|
|
#define STM32_DMA1_CH5_HANDLER Vector7C
|
|
|
|
#define STM32_DMA1_CH6_HANDLER Vector80
|
|
|
|
#define STM32_DMA1_CH7_HANDLER Vector84
|
|
|
|
#define STM32_DMA1_CH1_NUMBER 11
|
|
|
|
#define STM32_DMA1_CH2_NUMBER 12
|
|
|
|
#define STM32_DMA1_CH3_NUMBER 13
|
|
|
|
#define STM32_DMA1_CH4_NUMBER 14
|
|
|
|
#define STM32_DMA1_CH5_NUMBER 15
|
|
|
|
#define STM32_DMA1_CH6_NUMBER 16
|
|
|
|
#define STM32_DMA1_CH7_NUMBER 17
|
|
|
|
|
|
|
|
#define STM32_DMA2_NUM_CHANNELS 0
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* ETH attributes.*/
|
|
|
|
#define STM32_HAS_ETH FALSE
|
|
|
|
|
|
|
|
/* EXTI attributes.*/
|
2015-07-28 11:44:32 +00:00
|
|
|
#define STM32_EXTI_NUM_LINES 33
|
|
|
|
#define STM32_EXTI_IMR_MASK 0x1F800000U
|
|
|
|
#define STM32_EXTI_IMR2_MASK 0xFFFFFFFCU
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* 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
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_GPIOJ FALSE
|
|
|
|
#define STM32_HAS_GPIOK FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_GPIO_EN_MASK (RCC_AHBENR_GPIOAEN | \
|
|
|
|
RCC_AHBENR_GPIOBEN | \
|
|
|
|
RCC_AHBENR_GPIOCEN | \
|
|
|
|
RCC_AHBENR_GPIODEN | \
|
|
|
|
RCC_AHBENR_GPIOFEN)
|
|
|
|
|
|
|
|
/* I2C attributes.*/
|
|
|
|
#define STM32_HAS_I2C1 TRUE
|
|
|
|
#define STM32_I2C_I2C1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
#define STM32_I2C_I2C1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C2 TRUE
|
|
|
|
#define STM32_I2C_I2C2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_I2C_I2C2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C3 TRUE
|
|
|
|
#define STM32_I2C_I2C3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
#define STM32_I2C_I2C3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 1)
|
|
|
|
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_I2C4 FALSE
|
|
|
|
|
2014-09-28 08:06:08 +00:00
|
|
|
/* RTC attributes.*/
|
|
|
|
#define STM32_HAS_RTC TRUE
|
|
|
|
#define STM32_RTC_HAS_SUBSECONDS TRUE
|
|
|
|
#define STM32_RTC_HAS_PERIODIC_WAKEUPS TRUE
|
|
|
|
#define STM32_RTC_NUM_ALARMS 2
|
|
|
|
#define STM32_RTC_HAS_INTERRUPTS FALSE
|
|
|
|
|
|
|
|
/* SDIO attributes.*/
|
|
|
|
#define STM32_HAS_SDIO FALSE
|
|
|
|
|
|
|
|
/* SPI attributes.*/
|
|
|
|
#define STM32_HAS_SPI2 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI2_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI2_I2S_FULLDUPLEX TRUE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_SPI_SPI2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
#define STM32_SPI_SPI2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI3 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI3_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI3_I2S_FULLDUPLEX TRUE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_SPI_SPI3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
#define STM32_SPI_SPI3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI1 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_TIM6 TRUE
|
|
|
|
#define STM32_TIM6_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM6_CHANNELS 0
|
|
|
|
|
|
|
|
#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
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_TIM16_CHANNELS 1
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
#define STM32_HAS_TIM17 TRUE
|
|
|
|
#define STM32_TIM17_IS_32BITS FALSE
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_TIM17_CHANNELS 1
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
#define STM32_HAS_TIM3 FALSE
|
|
|
|
#define STM32_HAS_TIM4 FALSE
|
|
|
|
#define STM32_HAS_TIM5 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_TIM14 FALSE
|
|
|
|
#define STM32_HAS_TIM18 FALSE
|
|
|
|
#define STM32_HAS_TIM19 FALSE
|
2015-07-26 06:17:10 +00:00
|
|
|
#define STM32_HAS_TIM20 FALSE
|
|
|
|
#define STM32_HAS_TIM21 FALSE
|
|
|
|
#define STM32_HAS_TIM22 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* USART attributes.*/
|
|
|
|
#define STM32_HAS_USART1 TRUE
|
|
|
|
#define STM32_UART_USART1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_UART_USART1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART2 TRUE
|
|
|
|
#define STM32_UART_USART2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
#define STM32_UART_USART2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART3 TRUE
|
|
|
|
#define STM32_UART_USART3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
#define STM32_UART_USART3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
|
|
|
|
#define STM32_HAS_UART4 FALSE
|
|
|
|
#define STM32_HAS_UART5 FALSE
|
|
|
|
#define STM32_HAS_USART6 FALSE
|
2015-11-28 10:55:48 +00:00
|
|
|
#define STM32_HAS_UART7 FALSE
|
|
|
|
#define STM32_HAS_UART8 FALSE
|
|
|
|
#define STM32_HAS_LPUART1 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* USB attributes.*/
|
|
|
|
#define STM32_HAS_USB FALSE
|
|
|
|
#define STM32_HAS_OTG1 FALSE
|
|
|
|
#define STM32_HAS_OTG2 FALSE
|
2015-06-26 08:15:18 +00:00
|
|
|
|
2015-12-03 15:16:07 +00:00
|
|
|
/* IWDG attributes.*/
|
|
|
|
#define STM32_HAS_IWDG TRUE
|
|
|
|
#define STM32_IWDG_IS_WINDOWED TRUE
|
|
|
|
|
2015-06-26 08:15:18 +00:00
|
|
|
/* LTDC attributes.*/
|
|
|
|
#define STM32_HAS_LTDC FALSE
|
|
|
|
|
|
|
|
/* DMA2D attributes.*/
|
|
|
|
#define STM32_HAS_DMA2D FALSE
|
|
|
|
|
|
|
|
/* FSMC attributes.*/
|
|
|
|
#define STM32_HAS_FSMC FALSE
|
2015-07-04 07:17:45 +00:00
|
|
|
|
|
|
|
/* CRC attributes.*/
|
|
|
|
#define STM32_HAS_CRC TRUE
|
|
|
|
#define STM32_CRC_PROGRAMMABLE TRUE
|
2014-09-28 08:06:08 +00:00
|
|
|
#endif /* defined(STM32F301x8) */
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* STM32F302x8. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
#if defined(STM32F302x8)
|
|
|
|
/* ADC attributes.*/
|
|
|
|
#define STM32_HAS_ADC1 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC1_HANDLER Vector88
|
|
|
|
#define STM32_ADC1_NUMBER 18
|
|
|
|
#define STM32_ADC1_DMA_MSK (STM32_DMA_STREAM_ID_MSK(1, 1))
|
|
|
|
#define STM32_ADC1_DMA_CHN 0x00000000
|
|
|
|
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_HAS_ADC2 FALSE
|
|
|
|
#define STM32_HAS_ADC3 FALSE
|
|
|
|
#define STM32_HAS_ADC4 FALSE
|
|
|
|
|
|
|
|
#define STM32_HAS_SDADC1 FALSE
|
|
|
|
#define STM32_HAS_SDADC2 FALSE
|
|
|
|
#define STM32_HAS_SDADC3 FALSE
|
|
|
|
|
|
|
|
/* CAN attributes.*/
|
|
|
|
#define STM32_HAS_CAN1 TRUE
|
|
|
|
#define STM32_HAS_CAN2 FALSE
|
|
|
|
#define STM32_CAN_MAX_FILTERS 14
|
|
|
|
|
|
|
|
/* DAC attributes.*/
|
2015-05-13 11:31:25 +00:00
|
|
|
#define STM32_HAS_DAC1_CH1 TRUE
|
|
|
|
#define STM32_DAC_DAC1_CH1_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC1_CH2 FALSE
|
|
|
|
#define STM32_HAS_DAC2_CH1 FALSE
|
|
|
|
#define STM32_HAS_DAC2_CH2 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* DMA attributes.*/
|
|
|
|
#define STM32_ADVANCED_DMA FALSE
|
2015-09-21 11:01:37 +00:00
|
|
|
#define STM32_DMA_SUPPORTS_CSELR FALSE
|
|
|
|
|
|
|
|
#define STM32_DMA1_NUM_CHANNELS 7
|
|
|
|
#define STM32_DMA1_CH1_HANDLER Vector6C
|
|
|
|
#define STM32_DMA1_CH2_HANDLER Vector70
|
|
|
|
#define STM32_DMA1_CH3_HANDLER Vector74
|
|
|
|
#define STM32_DMA1_CH4_HANDLER Vector78
|
|
|
|
#define STM32_DMA1_CH5_HANDLER Vector7C
|
|
|
|
#define STM32_DMA1_CH6_HANDLER Vector80
|
|
|
|
#define STM32_DMA1_CH7_HANDLER Vector84
|
|
|
|
#define STM32_DMA1_CH1_NUMBER 11
|
|
|
|
#define STM32_DMA1_CH2_NUMBER 12
|
|
|
|
#define STM32_DMA1_CH3_NUMBER 13
|
|
|
|
#define STM32_DMA1_CH4_NUMBER 14
|
|
|
|
#define STM32_DMA1_CH5_NUMBER 15
|
|
|
|
#define STM32_DMA1_CH6_NUMBER 16
|
|
|
|
#define STM32_DMA1_CH7_NUMBER 17
|
|
|
|
|
|
|
|
#define STM32_DMA2_NUM_CHANNELS 0
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* ETH attributes.*/
|
|
|
|
#define STM32_HAS_ETH FALSE
|
|
|
|
|
|
|
|
/* EXTI attributes.*/
|
2015-07-28 11:44:32 +00:00
|
|
|
#define STM32_EXTI_NUM_LINES 33
|
|
|
|
#define STM32_EXTI_IMR_MASK 0x1F800000U
|
|
|
|
#define STM32_EXTI_IMR2_MASK 0xFFFFFFFCU
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* 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
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_GPIOJ FALSE
|
|
|
|
#define STM32_HAS_GPIOK FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_GPIO_EN_MASK (RCC_AHBENR_GPIOAEN | \
|
|
|
|
RCC_AHBENR_GPIOBEN | \
|
|
|
|
RCC_AHBENR_GPIOCEN | \
|
|
|
|
RCC_AHBENR_GPIODEN | \
|
|
|
|
RCC_AHBENR_GPIOFEN)
|
|
|
|
|
|
|
|
/* I2C attributes.*/
|
|
|
|
#define STM32_HAS_I2C1 TRUE
|
|
|
|
#define STM32_I2C_I2C1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
#define STM32_I2C_I2C1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C2 TRUE
|
|
|
|
#define STM32_I2C_I2C2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_I2C_I2C2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C3 TRUE
|
|
|
|
#define STM32_I2C_I2C3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
#define STM32_I2C_I2C3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 1)
|
|
|
|
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_I2C4 FALSE
|
|
|
|
|
2014-09-28 08:06:08 +00:00
|
|
|
/* RTC attributes.*/
|
|
|
|
#define STM32_HAS_RTC TRUE
|
|
|
|
#define STM32_RTC_HAS_SUBSECONDS TRUE
|
|
|
|
#define STM32_RTC_HAS_PERIODIC_WAKEUPS TRUE
|
|
|
|
#define STM32_RTC_NUM_ALARMS 2
|
|
|
|
#define STM32_RTC_HAS_INTERRUPTS FALSE
|
|
|
|
|
|
|
|
/* SDIO attributes.*/
|
|
|
|
#define STM32_HAS_SDIO FALSE
|
|
|
|
|
|
|
|
/* SPI attributes.*/
|
|
|
|
#define STM32_HAS_SPI2 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI2_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI2_I2S_FULLDUPLEX TRUE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_SPI_SPI2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
#define STM32_SPI_SPI2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI3 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI3_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI3_I2S_FULLDUPLEX TRUE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_SPI_SPI3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
#define STM32_SPI_SPI3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI1 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_TIM6 TRUE
|
|
|
|
#define STM32_TIM6_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM6_CHANNELS 0
|
|
|
|
|
|
|
|
#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
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_TIM16_CHANNELS 1
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
#define STM32_HAS_TIM17 TRUE
|
|
|
|
#define STM32_TIM17_IS_32BITS FALSE
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_TIM17_CHANNELS 1
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
#define STM32_HAS_TIM3 FALSE
|
|
|
|
#define STM32_HAS_TIM4 FALSE
|
|
|
|
#define STM32_HAS_TIM5 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_TIM14 FALSE
|
|
|
|
#define STM32_HAS_TIM18 FALSE
|
|
|
|
#define STM32_HAS_TIM19 FALSE
|
2015-07-26 06:17:10 +00:00
|
|
|
#define STM32_HAS_TIM20 FALSE
|
|
|
|
#define STM32_HAS_TIM21 FALSE
|
|
|
|
#define STM32_HAS_TIM22 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* USART attributes.*/
|
|
|
|
#define STM32_HAS_USART1 TRUE
|
|
|
|
#define STM32_UART_USART1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_UART_USART1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART2 TRUE
|
|
|
|
#define STM32_UART_USART2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
#define STM32_UART_USART2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART3 TRUE
|
|
|
|
#define STM32_UART_USART3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
#define STM32_UART_USART3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
|
2015-12-12 16:26:56 +00:00
|
|
|
#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 FALSE
|
|
|
|
|
|
|
|
/* USB attributes.*/
|
|
|
|
#define STM32_HAS_USB TRUE
|
|
|
|
#define STM32_USB_ACCESS_SCHEME_2x16 TRUE
|
|
|
|
#define STM32_USB_PMA_SIZE 768
|
|
|
|
#define STM32_USB_HAS_BCDR FALSE
|
|
|
|
#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 TRUE
|
|
|
|
#define STM32_CRC_PROGRAMMABLE TRUE
|
|
|
|
#endif /* defined(STM32F302x8) */
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* STM32F302xC. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
#if defined(STM32F302xC)
|
|
|
|
/* ADC attributes.*/
|
|
|
|
#define STM32_HAS_ADC1 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC1_HANDLER Vector88
|
|
|
|
#define STM32_ADC1_NUMBER 18
|
|
|
|
#define STM32_ADC1_DMA_MSK (STM32_DMA_STREAM_ID_MSK(1, 1))
|
|
|
|
#define STM32_ADC1_DMA_CHN 0x00000000
|
|
|
|
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_HAS_ADC2 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC2_HANDLER Vector88
|
|
|
|
#define STM32_ADC2_NUMBER 18
|
|
|
|
#define STM32_ADC2_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 1) |\
|
|
|
|
STM32_DMA_STREAM_ID_MSK(2, 3))
|
|
|
|
#define STM32_ADC2_DMA_CHN 0x00000000
|
|
|
|
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_HAS_ADC3 FALSE
|
|
|
|
#define STM32_HAS_ADC4 FALSE
|
|
|
|
|
|
|
|
#define STM32_HAS_SDADC1 FALSE
|
|
|
|
#define STM32_HAS_SDADC2 FALSE
|
|
|
|
#define STM32_HAS_SDADC3 FALSE
|
|
|
|
|
|
|
|
/* CAN attributes.*/
|
|
|
|
#define STM32_HAS_CAN1 TRUE
|
|
|
|
#define STM32_HAS_CAN2 FALSE
|
|
|
|
#define STM32_CAN_MAX_FILTERS 14
|
|
|
|
|
|
|
|
/* DAC attributes.*/
|
|
|
|
#define STM32_HAS_DAC1_CH1 TRUE
|
|
|
|
#define STM32_DAC_DAC1_CH1_DMA_STREAM STM32_DMA_STREAM_ID(2, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC1_CH2 FALSE
|
|
|
|
#define STM32_HAS_DAC2_CH1 FALSE
|
|
|
|
#define STM32_HAS_DAC2_CH2 FALSE
|
|
|
|
|
|
|
|
/* DMA attributes.*/
|
|
|
|
#define STM32_ADVANCED_DMA FALSE
|
|
|
|
#define STM32_DMA_SUPPORTS_CSELR FALSE
|
|
|
|
|
|
|
|
#define STM32_DMA1_NUM_CHANNELS 7
|
|
|
|
#define STM32_DMA1_CH1_HANDLER Vector6C
|
|
|
|
#define STM32_DMA1_CH2_HANDLER Vector70
|
|
|
|
#define STM32_DMA1_CH3_HANDLER Vector74
|
|
|
|
#define STM32_DMA1_CH4_HANDLER Vector78
|
|
|
|
#define STM32_DMA1_CH5_HANDLER Vector7C
|
|
|
|
#define STM32_DMA1_CH6_HANDLER Vector80
|
|
|
|
#define STM32_DMA1_CH7_HANDLER Vector84
|
|
|
|
#define STM32_DMA1_CH1_NUMBER 11
|
|
|
|
#define STM32_DMA1_CH2_NUMBER 12
|
|
|
|
#define STM32_DMA1_CH3_NUMBER 13
|
|
|
|
#define STM32_DMA1_CH4_NUMBER 14
|
|
|
|
#define STM32_DMA1_CH5_NUMBER 15
|
|
|
|
#define STM32_DMA1_CH6_NUMBER 16
|
|
|
|
#define STM32_DMA1_CH7_NUMBER 17
|
|
|
|
|
|
|
|
#define STM32_DMA2_NUM_CHANNELS 5
|
|
|
|
#define STM32_DMA2_CH1_HANDLER Vector120
|
|
|
|
#define STM32_DMA2_CH2_HANDLER Vector124
|
|
|
|
#define STM32_DMA2_CH3_HANDLER Vector128
|
|
|
|
#define STM32_DMA2_CH4_HANDLER Vector12C
|
|
|
|
#define STM32_DMA2_CH5_HANDLER Vector130
|
|
|
|
#define STM32_DMA2_CH1_NUMBER 56
|
|
|
|
#define STM32_DMA2_CH2_NUMBER 57
|
|
|
|
#define STM32_DMA2_CH3_NUMBER 58
|
|
|
|
#define STM32_DMA2_CH4_NUMBER 59
|
|
|
|
#define STM32_DMA2_CH5_NUMBER 60
|
|
|
|
|
|
|
|
/* ETH attributes.*/
|
|
|
|
#define STM32_HAS_ETH FALSE
|
|
|
|
|
|
|
|
/* EXTI attributes.*/
|
|
|
|
#define STM32_EXTI_NUM_LINES 34
|
|
|
|
#define STM32_EXTI_IMR_MASK 0x1F800000U
|
|
|
|
#define STM32_EXTI_IMR2_MASK 0xFFFFFFFCU
|
|
|
|
|
|
|
|
/* 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_AHBENR_GPIOAEN | \
|
|
|
|
RCC_AHBENR_GPIOBEN | \
|
|
|
|
RCC_AHBENR_GPIOCEN | \
|
|
|
|
RCC_AHBENR_GPIODEN | \
|
|
|
|
RCC_AHBENR_GPIOEEN | \
|
|
|
|
RCC_AHBENR_GPIOFEN)
|
|
|
|
|
|
|
|
/* I2C attributes.*/
|
|
|
|
#define STM32_HAS_I2C1 TRUE
|
|
|
|
#define STM32_I2C_I2C1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
#define STM32_I2C_I2C1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C2 TRUE
|
|
|
|
#define STM32_I2C_I2C2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_I2C_I2C2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C3 FALSE
|
|
|
|
#define STM32_HAS_I2C4 FALSE
|
|
|
|
|
|
|
|
/* RTC attributes.*/
|
|
|
|
#define STM32_HAS_RTC TRUE
|
|
|
|
#define STM32_RTC_HAS_SUBSECONDS TRUE
|
|
|
|
#define STM32_RTC_HAS_PERIODIC_WAKEUPS TRUE
|
|
|
|
#define STM32_RTC_NUM_ALARMS 2
|
|
|
|
#define STM32_RTC_HAS_INTERRUPTS FALSE
|
|
|
|
|
|
|
|
/* SDIO attributes.*/
|
|
|
|
#define STM32_HAS_SDIO FALSE
|
|
|
|
|
|
|
|
/* SPI attributes.*/
|
|
|
|
#define STM32_HAS_SPI1 TRUE
|
|
|
|
#define STM32_SPI1_SUPPORTS_I2S FALSE
|
|
|
|
#define STM32_SPI_SPI1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
#define STM32_SPI_SPI1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI2 TRUE
|
|
|
|
#define STM32_SPI2_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI2_I2S_FULLDUPLEX TRUE
|
|
|
|
#define STM32_SPI_SPI2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
#define STM32_SPI_SPI2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI3 TRUE
|
|
|
|
#define STM32_SPI3_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI3_I2S_FULLDUPLEX TRUE
|
|
|
|
#define STM32_SPI_SPI3_RX_DMA_STREAM STM32_DMA_STREAM_ID(2, 1)
|
|
|
|
#define STM32_SPI_SPI3_TX_DMA_STREAM STM32_DMA_STREAM_ID(2, 2)
|
|
|
|
|
|
|
|
#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_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_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_TIM14 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_UART_USART1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_UART_USART1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART2 TRUE
|
|
|
|
#define STM32_UART_USART2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
#define STM32_UART_USART2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART3 TRUE
|
|
|
|
#define STM32_UART_USART3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
#define STM32_UART_USART3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
|
|
|
|
#define STM32_HAS_UART4 TRUE
|
|
|
|
#define STM32_UART_UART4_RX_DMA_STREAM STM32_DMA_STREAM_ID(2, 3)
|
|
|
|
#define STM32_UART_UART4_TX_DMA_STREAM STM32_DMA_STREAM_ID(2, 5)
|
|
|
|
|
|
|
|
#define STM32_HAS_UART5 TRUE
|
|
|
|
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_HAS_USART6 FALSE
|
2015-11-28 10:55:48 +00:00
|
|
|
#define STM32_HAS_UART7 FALSE
|
|
|
|
#define STM32_HAS_UART8 FALSE
|
|
|
|
#define STM32_HAS_LPUART1 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* USB attributes.*/
|
|
|
|
#define STM32_HAS_USB TRUE
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_USB_ACCESS_SCHEME_2x16 FALSE
|
|
|
|
#define STM32_USB_PMA_SIZE 512
|
2014-12-20 16:53:05 +00:00
|
|
|
#define STM32_USB_HAS_BCDR FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_HAS_OTG1 FALSE
|
|
|
|
#define STM32_HAS_OTG2 FALSE
|
2015-06-26 08:15:18 +00:00
|
|
|
|
2015-12-03 15:16:07 +00:00
|
|
|
/* IWDG attributes.*/
|
|
|
|
#define STM32_HAS_IWDG TRUE
|
|
|
|
#define STM32_IWDG_IS_WINDOWED TRUE
|
|
|
|
|
2015-06-26 08:15:18 +00:00
|
|
|
/* LTDC attributes.*/
|
|
|
|
#define STM32_HAS_LTDC FALSE
|
|
|
|
|
|
|
|
/* DMA2D attributes.*/
|
|
|
|
#define STM32_HAS_DMA2D FALSE
|
|
|
|
|
|
|
|
/* FSMC attributes.*/
|
|
|
|
#define STM32_HAS_FSMC FALSE
|
2015-07-04 07:17:45 +00:00
|
|
|
|
|
|
|
/* CRC attributes.*/
|
|
|
|
#define STM32_HAS_CRC TRUE
|
|
|
|
#define STM32_CRC_PROGRAMMABLE TRUE
|
2015-12-12 16:26:56 +00:00
|
|
|
#endif /* defined(STM32F302xC) */
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/*===========================================================================*/
|
2015-12-12 16:26:56 +00:00
|
|
|
/* STM32F302xE. */
|
2014-09-28 08:06:08 +00:00
|
|
|
/*===========================================================================*/
|
2015-12-12 16:26:56 +00:00
|
|
|
#if defined(STM32F302xE)
|
2014-09-28 08:06:08 +00:00
|
|
|
/* ADC attributes.*/
|
|
|
|
#define STM32_HAS_ADC1 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC1_HANDLER Vector88
|
|
|
|
#define STM32_ADC1_NUMBER 18
|
|
|
|
#define STM32_ADC1_DMA_MSK (STM32_DMA_STREAM_ID_MSK(1, 1))
|
|
|
|
#define STM32_ADC1_DMA_CHN 0x00000000
|
|
|
|
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_HAS_ADC2 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC2_HANDLER Vector88
|
|
|
|
#define STM32_ADC2_NUMBER 18
|
|
|
|
#define STM32_ADC2_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 1) |\
|
|
|
|
STM32_DMA_STREAM_ID_MSK(2, 3))
|
|
|
|
#define STM32_ADC2_DMA_CHN 0x00000000
|
|
|
|
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_HAS_ADC3 FALSE
|
|
|
|
#define STM32_HAS_ADC4 FALSE
|
|
|
|
|
|
|
|
#define STM32_HAS_SDADC1 FALSE
|
|
|
|
#define STM32_HAS_SDADC2 FALSE
|
|
|
|
#define STM32_HAS_SDADC3 FALSE
|
|
|
|
|
|
|
|
/* CAN attributes.*/
|
|
|
|
#define STM32_HAS_CAN1 TRUE
|
|
|
|
#define STM32_HAS_CAN2 FALSE
|
|
|
|
#define STM32_CAN_MAX_FILTERS 14
|
|
|
|
|
|
|
|
/* DAC attributes.*/
|
2015-05-13 11:31:25 +00:00
|
|
|
#define STM32_HAS_DAC1_CH1 TRUE
|
|
|
|
#define STM32_DAC_DAC1_CH1_DMA_STREAM STM32_DMA_STREAM_ID(2, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC1_CH2 FALSE
|
|
|
|
#define STM32_HAS_DAC2_CH1 FALSE
|
|
|
|
#define STM32_HAS_DAC2_CH2 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* DMA attributes.*/
|
|
|
|
#define STM32_ADVANCED_DMA FALSE
|
2015-09-21 11:01:37 +00:00
|
|
|
#define STM32_DMA_SUPPORTS_CSELR FALSE
|
|
|
|
|
|
|
|
#define STM32_DMA1_NUM_CHANNELS 7
|
|
|
|
#define STM32_DMA1_CH1_HANDLER Vector6C
|
|
|
|
#define STM32_DMA1_CH2_HANDLER Vector70
|
|
|
|
#define STM32_DMA1_CH3_HANDLER Vector74
|
|
|
|
#define STM32_DMA1_CH4_HANDLER Vector78
|
|
|
|
#define STM32_DMA1_CH5_HANDLER Vector7C
|
|
|
|
#define STM32_DMA1_CH6_HANDLER Vector80
|
|
|
|
#define STM32_DMA1_CH7_HANDLER Vector84
|
|
|
|
#define STM32_DMA1_CH1_NUMBER 11
|
|
|
|
#define STM32_DMA1_CH2_NUMBER 12
|
|
|
|
#define STM32_DMA1_CH3_NUMBER 13
|
|
|
|
#define STM32_DMA1_CH4_NUMBER 14
|
|
|
|
#define STM32_DMA1_CH5_NUMBER 15
|
|
|
|
#define STM32_DMA1_CH6_NUMBER 16
|
|
|
|
#define STM32_DMA1_CH7_NUMBER 17
|
|
|
|
|
|
|
|
#define STM32_DMA2_NUM_CHANNELS 5
|
|
|
|
#define STM32_DMA2_CH1_HANDLER Vector120
|
|
|
|
#define STM32_DMA2_CH2_HANDLER Vector124
|
|
|
|
#define STM32_DMA2_CH3_HANDLER Vector128
|
|
|
|
#define STM32_DMA2_CH4_HANDLER Vector12C
|
|
|
|
#define STM32_DMA2_CH5_HANDLER Vector130
|
|
|
|
#define STM32_DMA2_CH1_NUMBER 56
|
|
|
|
#define STM32_DMA2_CH2_NUMBER 57
|
|
|
|
#define STM32_DMA2_CH3_NUMBER 58
|
|
|
|
#define STM32_DMA2_CH4_NUMBER 59
|
|
|
|
#define STM32_DMA2_CH5_NUMBER 60
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* ETH attributes.*/
|
|
|
|
#define STM32_HAS_ETH FALSE
|
|
|
|
|
|
|
|
/* EXTI attributes.*/
|
2015-07-28 11:44:32 +00:00
|
|
|
#define STM32_EXTI_NUM_LINES 34
|
|
|
|
#define STM32_EXTI_IMR_MASK 0x1F800000U
|
|
|
|
#define STM32_EXTI_IMR2_MASK 0xFFFFFFFCU
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* 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
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_HAS_GPIOG TRUE
|
|
|
|
#define STM32_HAS_GPIOH TRUE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_HAS_GPIOI FALSE
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_GPIOJ FALSE
|
|
|
|
#define STM32_HAS_GPIOK FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_GPIO_EN_MASK (RCC_AHBENR_GPIOAEN | \
|
|
|
|
RCC_AHBENR_GPIOBEN | \
|
|
|
|
RCC_AHBENR_GPIOCEN | \
|
|
|
|
RCC_AHBENR_GPIODEN | \
|
|
|
|
RCC_AHBENR_GPIOEEN | \
|
2015-12-12 16:26:56 +00:00
|
|
|
RCC_AHBENR_GPIOFEN | \
|
|
|
|
RCC_AHBENR_GPIOGEN | \
|
|
|
|
RCC_AHBENR_GPIOHEN)
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* I2C attributes.*/
|
2015-04-24 13:59:43 +00:00
|
|
|
#define STM32_HAS_I2C1 TRUE
|
2015-08-26 16:49:41 +00:00
|
|
|
#define STM32_I2C_I2C1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
#define STM32_I2C_I2C1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
#define STM32_HAS_I2C2 TRUE
|
|
|
|
#define STM32_I2C_I2C2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_I2C_I2C2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_HAS_I2C3 TRUE
|
|
|
|
#define STM32_I2C_I2C3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
#define STM32_I2C_I2C3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 1)
|
|
|
|
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_I2C4 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* RTC attributes.*/
|
|
|
|
#define STM32_HAS_RTC TRUE
|
|
|
|
#define STM32_RTC_HAS_SUBSECONDS TRUE
|
|
|
|
#define STM32_RTC_HAS_PERIODIC_WAKEUPS TRUE
|
|
|
|
#define STM32_RTC_NUM_ALARMS 2
|
|
|
|
#define STM32_RTC_HAS_INTERRUPTS FALSE
|
|
|
|
|
|
|
|
/* SDIO attributes.*/
|
|
|
|
#define STM32_HAS_SDIO FALSE
|
|
|
|
|
|
|
|
/* SPI attributes.*/
|
|
|
|
#define STM32_HAS_SPI1 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI1_SUPPORTS_I2S FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_SPI_SPI1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
#define STM32_SPI_SPI1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI2 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI2_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI2_I2S_FULLDUPLEX TRUE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_SPI_SPI2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
#define STM32_SPI_SPI2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI3 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI3_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI3_I2S_FULLDUPLEX TRUE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_SPI_SPI3_RX_DMA_STREAM STM32_DMA_STREAM_ID(2, 1)
|
|
|
|
#define STM32_SPI_SPI3_TX_DMA_STREAM STM32_DMA_STREAM_ID(2, 2)
|
|
|
|
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_HAS_SPI4 TRUE
|
|
|
|
#define STM32_SPI4_SUPPORTS_I2S FALSE
|
|
|
|
#define STM32_SPI_SPI4_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
#define STM32_SPI_SPI4_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
|
2014-09-28 08:06:08 +00:00
|
|
|
#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_TIM15 TRUE
|
|
|
|
#define STM32_TIM15_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM15_CHANNELS 2
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM16 TRUE
|
|
|
|
#define STM32_TIM16_IS_32BITS FALSE
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_TIM16_CHANNELS 1
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
#define STM32_HAS_TIM17 TRUE
|
|
|
|
#define STM32_TIM17_IS_32BITS FALSE
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_TIM17_CHANNELS 1
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
#define STM32_HAS_TIM5 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_TIM14 FALSE
|
|
|
|
#define STM32_HAS_TIM18 FALSE
|
|
|
|
#define STM32_HAS_TIM19 FALSE
|
2015-07-26 06:17:10 +00:00
|
|
|
#define STM32_HAS_TIM20 FALSE
|
|
|
|
#define STM32_HAS_TIM21 FALSE
|
|
|
|
#define STM32_HAS_TIM22 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* USART attributes.*/
|
|
|
|
#define STM32_HAS_USART1 TRUE
|
|
|
|
#define STM32_UART_USART1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_UART_USART1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART2 TRUE
|
|
|
|
#define STM32_UART_USART2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
#define STM32_UART_USART2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART3 TRUE
|
|
|
|
#define STM32_UART_USART3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
#define STM32_UART_USART3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
|
|
|
|
#define STM32_HAS_UART4 TRUE
|
|
|
|
#define STM32_UART_UART4_RX_DMA_STREAM STM32_DMA_STREAM_ID(2, 3)
|
|
|
|
#define STM32_UART_UART4_TX_DMA_STREAM STM32_DMA_STREAM_ID(2, 5)
|
|
|
|
|
|
|
|
#define STM32_HAS_UART5 TRUE
|
|
|
|
|
|
|
|
#define STM32_HAS_USART6 FALSE
|
2015-11-28 10:55:48 +00:00
|
|
|
#define STM32_HAS_UART7 FALSE
|
|
|
|
#define STM32_HAS_UART8 FALSE
|
|
|
|
#define STM32_HAS_LPUART1 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* USB attributes.*/
|
|
|
|
#define STM32_HAS_USB TRUE
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_USB_ACCESS_SCHEME_2x16 TRUE
|
|
|
|
#define STM32_USB_PMA_SIZE 768
|
2014-12-20 16:53:05 +00:00
|
|
|
#define STM32_USB_HAS_BCDR FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_HAS_OTG1 FALSE
|
|
|
|
#define STM32_HAS_OTG2 FALSE
|
2015-06-26 08:15:18 +00:00
|
|
|
|
2015-12-03 15:16:07 +00:00
|
|
|
/* IWDG attributes.*/
|
|
|
|
#define STM32_HAS_IWDG TRUE
|
|
|
|
#define STM32_IWDG_IS_WINDOWED TRUE
|
|
|
|
|
2015-06-26 08:15:18 +00:00
|
|
|
/* LTDC attributes.*/
|
|
|
|
#define STM32_HAS_LTDC FALSE
|
|
|
|
|
|
|
|
/* DMA2D attributes.*/
|
|
|
|
#define STM32_HAS_DMA2D FALSE
|
|
|
|
|
|
|
|
/* FSMC attributes.*/
|
|
|
|
#define STM32_HAS_FSMC FALSE
|
2015-07-04 07:17:45 +00:00
|
|
|
|
|
|
|
/* CRC attributes.*/
|
|
|
|
#define STM32_HAS_CRC TRUE
|
|
|
|
#define STM32_CRC_PROGRAMMABLE TRUE
|
2015-12-12 16:26:56 +00:00
|
|
|
#endif /* defined(STM32F302xE) */
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* STM32F318x8. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
#if defined(STM32F318x8)
|
|
|
|
/* ADC attributes.*/
|
|
|
|
#define STM32_HAS_ADC1 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC1_HANDLER Vector88
|
|
|
|
#define STM32_ADC1_NUMBER 18
|
|
|
|
#define STM32_ADC1_DMA_MSK (STM32_DMA_STREAM_ID_MSK(1, 1))
|
|
|
|
#define STM32_ADC1_DMA_CHN 0x00000000
|
|
|
|
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_HAS_ADC2 FALSE
|
|
|
|
#define STM32_HAS_ADC3 FALSE
|
|
|
|
#define STM32_HAS_ADC4 FALSE
|
|
|
|
|
|
|
|
#define STM32_HAS_SDADC1 FALSE
|
|
|
|
#define STM32_HAS_SDADC2 FALSE
|
|
|
|
#define STM32_HAS_SDADC3 FALSE
|
|
|
|
|
|
|
|
/* CAN attributes.*/
|
|
|
|
#define STM32_HAS_CAN1 TRUE
|
|
|
|
#define STM32_HAS_CAN2 FALSE
|
|
|
|
#define STM32_CAN_MAX_FILTERS 14
|
|
|
|
|
|
|
|
/* DAC attributes.*/
|
2015-05-13 11:31:25 +00:00
|
|
|
#define STM32_HAS_DAC1_CH1 TRUE
|
|
|
|
#define STM32_DAC_DAC1_CH1_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC1_CH2 FALSE
|
|
|
|
#define STM32_HAS_DAC2_CH1 FALSE
|
|
|
|
#define STM32_HAS_DAC2_CH2 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* DMA attributes.*/
|
|
|
|
#define STM32_ADVANCED_DMA FALSE
|
2015-09-21 11:01:37 +00:00
|
|
|
#define STM32_DMA_SUPPORTS_CSELR FALSE
|
|
|
|
|
|
|
|
#define STM32_DMA1_NUM_CHANNELS 7
|
|
|
|
#define STM32_DMA1_CH1_HANDLER Vector6C
|
|
|
|
#define STM32_DMA1_CH2_HANDLER Vector70
|
|
|
|
#define STM32_DMA1_CH3_HANDLER Vector74
|
|
|
|
#define STM32_DMA1_CH4_HANDLER Vector78
|
|
|
|
#define STM32_DMA1_CH5_HANDLER Vector7C
|
|
|
|
#define STM32_DMA1_CH6_HANDLER Vector80
|
|
|
|
#define STM32_DMA1_CH7_HANDLER Vector84
|
|
|
|
#define STM32_DMA1_CH1_NUMBER 11
|
|
|
|
#define STM32_DMA1_CH2_NUMBER 12
|
|
|
|
#define STM32_DMA1_CH3_NUMBER 13
|
|
|
|
#define STM32_DMA1_CH4_NUMBER 14
|
|
|
|
#define STM32_DMA1_CH5_NUMBER 15
|
|
|
|
#define STM32_DMA1_CH6_NUMBER 16
|
|
|
|
#define STM32_DMA1_CH7_NUMBER 17
|
|
|
|
|
|
|
|
#define STM32_DMA2_NUM_CHANNELS 0
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* ETH attributes.*/
|
|
|
|
#define STM32_HAS_ETH FALSE
|
|
|
|
|
|
|
|
/* EXTI attributes.*/
|
2015-07-28 11:44:32 +00:00
|
|
|
#define STM32_EXTI_NUM_LINES 33
|
|
|
|
#define STM32_EXTI_IMR_MASK 0x1F800000U
|
|
|
|
#define STM32_EXTI_IMR2_MASK 0xFFFFFFFCU
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* GPIO attributes.*/
|
|
|
|
#define STM32_HAS_GPIOA TRUE
|
|
|
|
#define STM32_HAS_GPIOB TRUE
|
|
|
|
#define STM32_HAS_GPIOC TRUE
|
|
|
|
#define STM32_HAS_GPIOD FALSE
|
|
|
|
#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
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_GPIOJ FALSE
|
|
|
|
#define STM32_HAS_GPIOK FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_GPIO_EN_MASK (RCC_AHBENR_GPIOAEN | \
|
|
|
|
RCC_AHBENR_GPIOBEN | \
|
|
|
|
RCC_AHBENR_GPIOCEN | \
|
|
|
|
RCC_AHBENR_GPIOFEN)
|
|
|
|
|
|
|
|
/* I2C attributes.*/
|
|
|
|
#define STM32_HAS_I2C1 TRUE
|
|
|
|
#define STM32_I2C_I2C1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
#define STM32_I2C_I2C1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C2 TRUE
|
|
|
|
#define STM32_I2C_I2C2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_I2C_I2C2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C3 TRUE
|
|
|
|
#define STM32_I2C_I2C3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
#define STM32_I2C_I2C3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 1)
|
|
|
|
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_I2C4 FALSE
|
|
|
|
|
2014-09-28 08:06:08 +00:00
|
|
|
/* RTC attributes.*/
|
|
|
|
#define STM32_HAS_RTC TRUE
|
|
|
|
#define STM32_RTC_HAS_SUBSECONDS TRUE
|
|
|
|
#define STM32_RTC_HAS_PERIODIC_WAKEUPS TRUE
|
|
|
|
#define STM32_RTC_NUM_ALARMS 2
|
|
|
|
#define STM32_RTC_HAS_INTERRUPTS FALSE
|
|
|
|
|
|
|
|
/* SDIO attributes.*/
|
|
|
|
#define STM32_HAS_SDIO FALSE
|
|
|
|
|
|
|
|
/* SPI attributes.*/
|
|
|
|
#define STM32_HAS_SPI2 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI2_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI2_I2S_FULLDUPLEX TRUE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_SPI_SPI2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
#define STM32_SPI_SPI2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI3 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI3_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI3_I2S_FULLDUPLEX TRUE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_SPI_SPI3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
#define STM32_SPI_SPI3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI1 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_TIM6 TRUE
|
|
|
|
#define STM32_TIM6_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM6_CHANNELS 0
|
|
|
|
|
|
|
|
#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
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_TIM16_CHANNELS 1
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
#define STM32_HAS_TIM17 TRUE
|
|
|
|
#define STM32_TIM17_IS_32BITS FALSE
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_TIM17_CHANNELS 1
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
#define STM32_HAS_TIM3 FALSE
|
|
|
|
#define STM32_HAS_TIM4 FALSE
|
|
|
|
#define STM32_HAS_TIM5 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_TIM14 FALSE
|
|
|
|
#define STM32_HAS_TIM18 FALSE
|
|
|
|
#define STM32_HAS_TIM19 FALSE
|
2015-07-26 06:17:10 +00:00
|
|
|
#define STM32_HAS_TIM20 FALSE
|
|
|
|
#define STM32_HAS_TIM21 FALSE
|
|
|
|
#define STM32_HAS_TIM22 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* USART attributes.*/
|
|
|
|
#define STM32_HAS_USART1 TRUE
|
|
|
|
#define STM32_UART_USART1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_UART_USART1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART2 TRUE
|
|
|
|
#define STM32_UART_USART2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
#define STM32_UART_USART2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART3 TRUE
|
|
|
|
#define STM32_UART_USART3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
#define STM32_UART_USART3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
|
|
|
|
#define STM32_HAS_UART4 FALSE
|
|
|
|
#define STM32_HAS_UART5 FALSE
|
|
|
|
#define STM32_HAS_USART6 FALSE
|
2015-11-28 10:55:48 +00:00
|
|
|
#define STM32_HAS_UART7 FALSE
|
|
|
|
#define STM32_HAS_UART8 FALSE
|
|
|
|
#define STM32_HAS_LPUART1 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* USB attributes.*/
|
2015-04-24 14:31:26 +00:00
|
|
|
#define STM32_HAS_USB FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_HAS_OTG1 FALSE
|
|
|
|
#define STM32_HAS_OTG2 FALSE
|
2015-06-26 08:15:18 +00:00
|
|
|
|
2015-12-03 15:16:07 +00:00
|
|
|
/* IWDG attributes.*/
|
|
|
|
#define STM32_HAS_IWDG TRUE
|
|
|
|
#define STM32_IWDG_IS_WINDOWED TRUE
|
|
|
|
|
2015-06-26 08:15:18 +00:00
|
|
|
/* LTDC attributes.*/
|
|
|
|
#define STM32_HAS_LTDC FALSE
|
|
|
|
|
|
|
|
/* DMA2D attributes.*/
|
|
|
|
#define STM32_HAS_DMA2D FALSE
|
|
|
|
|
|
|
|
/* FSMC attributes.*/
|
|
|
|
#define STM32_HAS_FSMC FALSE
|
2015-07-04 07:17:45 +00:00
|
|
|
|
|
|
|
/* CRC attributes.*/
|
|
|
|
#define STM32_HAS_CRC TRUE
|
|
|
|
#define STM32_CRC_PROGRAMMABLE TRUE
|
2014-09-28 08:06:08 +00:00
|
|
|
#endif /* defined(STM32F318x8) */
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* STM32F328x8. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
#if defined(STM32F328x8)
|
|
|
|
/* ADC attributes.*/
|
|
|
|
#define STM32_HAS_ADC1 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC1_HANDLER Vector88
|
|
|
|
#define STM32_ADC1_NUMBER 18
|
|
|
|
#define STM32_ADC1_DMA_MSK (STM32_DMA_STREAM_ID_MSK(1, 1))
|
|
|
|
#define STM32_ADC1_DMA_CHN 0x00000000
|
|
|
|
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_HAS_ADC2 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC2_HANDLER Vector88
|
|
|
|
#define STM32_ADC2_NUMBER 18
|
|
|
|
#define STM32_ADC2_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 1) |\
|
|
|
|
STM32_DMA_STREAM_ID_MSK(2, 3))
|
|
|
|
#define STM32_ADC2_DMA_CHN 0x00000000
|
|
|
|
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_HAS_ADC3 FALSE
|
|
|
|
#define STM32_HAS_ADC4 FALSE
|
|
|
|
|
|
|
|
#define STM32_HAS_SDADC1 FALSE
|
|
|
|
#define STM32_HAS_SDADC2 FALSE
|
|
|
|
#define STM32_HAS_SDADC3 FALSE
|
|
|
|
|
|
|
|
/* CAN attributes.*/
|
|
|
|
#define STM32_HAS_CAN1 TRUE
|
|
|
|
#define STM32_HAS_CAN2 FALSE
|
|
|
|
#define STM32_CAN_MAX_FILTERS 14
|
|
|
|
|
|
|
|
/* DAC attributes.*/
|
2015-05-13 11:31:25 +00:00
|
|
|
#define STM32_HAS_DAC1_CH1 TRUE
|
|
|
|
#define STM32_DAC_DAC1_CH1_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC1_CH2 TRUE
|
|
|
|
#define STM32_DAC_DAC1_CH2_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC2_CH1 TRUE
|
|
|
|
#define STM32_DAC_DAC2_CH1_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC2_CH2 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* DMA attributes.*/
|
|
|
|
#define STM32_ADVANCED_DMA FALSE
|
2015-09-21 11:01:37 +00:00
|
|
|
#define STM32_DMA_SUPPORTS_CSELR FALSE
|
|
|
|
|
|
|
|
#define STM32_DMA1_NUM_CHANNELS 7
|
|
|
|
#define STM32_DMA1_CH1_HANDLER Vector6C
|
|
|
|
#define STM32_DMA1_CH2_HANDLER Vector70
|
|
|
|
#define STM32_DMA1_CH3_HANDLER Vector74
|
|
|
|
#define STM32_DMA1_CH4_HANDLER Vector78
|
|
|
|
#define STM32_DMA1_CH5_HANDLER Vector7C
|
|
|
|
#define STM32_DMA1_CH6_HANDLER Vector80
|
|
|
|
#define STM32_DMA1_CH7_HANDLER Vector84
|
|
|
|
#define STM32_DMA1_CH1_NUMBER 11
|
|
|
|
#define STM32_DMA1_CH2_NUMBER 12
|
|
|
|
#define STM32_DMA1_CH3_NUMBER 13
|
|
|
|
#define STM32_DMA1_CH4_NUMBER 14
|
|
|
|
#define STM32_DMA1_CH5_NUMBER 15
|
|
|
|
#define STM32_DMA1_CH6_NUMBER 16
|
|
|
|
#define STM32_DMA1_CH7_NUMBER 17
|
|
|
|
|
|
|
|
#define STM32_DMA2_NUM_CHANNELS 0
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* ETH attributes.*/
|
|
|
|
#define STM32_HAS_ETH FALSE
|
|
|
|
|
|
|
|
/* EXTI attributes.*/
|
2015-07-28 11:44:32 +00:00
|
|
|
#define STM32_EXTI_NUM_LINES 33
|
|
|
|
#define STM32_EXTI_IMR_MASK 0x1F800000U
|
|
|
|
#define STM32_EXTI_IMR2_MASK 0xFFFFFFFCU
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* 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
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_GPIOJ FALSE
|
|
|
|
#define STM32_HAS_GPIOK FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_GPIO_EN_MASK (RCC_AHBENR_GPIOAEN | \
|
|
|
|
RCC_AHBENR_GPIOBEN | \
|
|
|
|
RCC_AHBENR_GPIOCEN | \
|
|
|
|
RCC_AHBENR_GPIODEN | \
|
|
|
|
RCC_AHBENR_GPIOFEN)
|
|
|
|
|
|
|
|
/* I2C attributes.*/
|
|
|
|
#define STM32_HAS_I2C1 TRUE
|
|
|
|
#define STM32_I2C_I2C1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
#define STM32_I2C_I2C1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C2 FALSE
|
|
|
|
#define STM32_HAS_I2C3 FALSE
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_I2C4 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* RTC attributes.*/
|
|
|
|
#define STM32_HAS_RTC TRUE
|
|
|
|
#define STM32_RTC_HAS_SUBSECONDS TRUE
|
|
|
|
#define STM32_RTC_HAS_PERIODIC_WAKEUPS TRUE
|
|
|
|
#define STM32_RTC_NUM_ALARMS 2
|
|
|
|
#define STM32_RTC_HAS_INTERRUPTS FALSE
|
|
|
|
|
|
|
|
/* SDIO attributes.*/
|
|
|
|
#define STM32_HAS_SDIO FALSE
|
|
|
|
|
|
|
|
/* SPI attributes.*/
|
|
|
|
#define STM32_HAS_SPI1 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI1_SUPPORTS_I2S FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_SPI_SPI1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
#define STM32_SPI_SPI1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI2 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_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_TIM15 TRUE
|
|
|
|
#define STM32_TIM15_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM15_CHANNELS 2
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM16 TRUE
|
|
|
|
#define STM32_TIM16_IS_32BITS FALSE
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_TIM16_CHANNELS 1
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
#define STM32_HAS_TIM17 TRUE
|
|
|
|
#define STM32_TIM17_IS_32BITS FALSE
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_TIM17_CHANNELS 1
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
#define STM32_HAS_TIM4 FALSE
|
|
|
|
#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_TIM14 FALSE
|
|
|
|
#define STM32_HAS_TIM18 FALSE
|
|
|
|
#define STM32_HAS_TIM19 FALSE
|
2015-07-26 06:17:10 +00:00
|
|
|
#define STM32_HAS_TIM20 FALSE
|
|
|
|
#define STM32_HAS_TIM21 FALSE
|
|
|
|
#define STM32_HAS_TIM22 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* USART attributes.*/
|
|
|
|
#define STM32_HAS_USART1 TRUE
|
|
|
|
#define STM32_UART_USART1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_UART_USART1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART2 TRUE
|
|
|
|
#define STM32_UART_USART2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
#define STM32_UART_USART2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART3 TRUE
|
|
|
|
#define STM32_UART_USART3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
#define STM32_UART_USART3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
|
|
|
|
#define STM32_HAS_UART4 FALSE
|
|
|
|
#define STM32_HAS_UART5 FALSE
|
|
|
|
#define STM32_HAS_USART6 FALSE
|
2015-11-28 10:55:48 +00:00
|
|
|
#define STM32_HAS_UART7 FALSE
|
|
|
|
#define STM32_HAS_UART8 FALSE
|
|
|
|
#define STM32_HAS_LPUART1 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* USB attributes.*/
|
|
|
|
#define STM32_HAS_USB FALSE
|
|
|
|
#define STM32_HAS_OTG1 FALSE
|
|
|
|
#define STM32_HAS_OTG2 FALSE
|
2015-06-26 08:15:18 +00:00
|
|
|
|
2015-12-03 15:16:07 +00:00
|
|
|
/* IWDG attributes.*/
|
|
|
|
#define STM32_HAS_IWDG TRUE
|
|
|
|
#define STM32_IWDG_IS_WINDOWED TRUE
|
|
|
|
|
2015-06-26 08:15:18 +00:00
|
|
|
/* LTDC attributes.*/
|
|
|
|
#define STM32_HAS_LTDC FALSE
|
|
|
|
|
|
|
|
/* DMA2D attributes.*/
|
|
|
|
#define STM32_HAS_DMA2D FALSE
|
|
|
|
|
|
|
|
/* FSMC attributes.*/
|
|
|
|
#define STM32_HAS_FSMC FALSE
|
2015-07-04 07:17:45 +00:00
|
|
|
|
|
|
|
/* CRC attributes.*/
|
|
|
|
#define STM32_HAS_CRC TRUE
|
|
|
|
#define STM32_CRC_PROGRAMMABLE TRUE
|
2014-09-28 08:06:08 +00:00
|
|
|
#endif /* defined(STM32F328x8) */
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* STM32F358xC. */
|
|
|
|
/*===========================================================================*/
|
2015-12-12 16:26:56 +00:00
|
|
|
#if defined(STM32F358xC)
|
2014-09-28 08:06:08 +00:00
|
|
|
/* ADC attributes.*/
|
|
|
|
#define STM32_HAS_ADC1 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC1_HANDLER Vector88
|
|
|
|
#define STM32_ADC1_NUMBER 18
|
|
|
|
#define STM32_ADC1_DMA_MSK (STM32_DMA_STREAM_ID_MSK(1, 1))
|
|
|
|
#define STM32_ADC1_DMA_CHN 0x00000000
|
|
|
|
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_HAS_ADC2 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC2_HANDLER Vector88
|
|
|
|
#define STM32_ADC2_NUMBER 18
|
|
|
|
#define STM32_ADC2_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 1) |\
|
|
|
|
STM32_DMA_STREAM_ID_MSK(2, 3))
|
|
|
|
#define STM32_ADC2_DMA_CHN 0x00000000
|
|
|
|
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_HAS_ADC3 FALSE
|
|
|
|
#define STM32_HAS_ADC4 FALSE
|
|
|
|
|
|
|
|
#define STM32_HAS_SDADC1 FALSE
|
|
|
|
#define STM32_HAS_SDADC2 FALSE
|
|
|
|
#define STM32_HAS_SDADC3 FALSE
|
|
|
|
|
|
|
|
/* CAN attributes.*/
|
|
|
|
#define STM32_HAS_CAN1 TRUE
|
|
|
|
#define STM32_HAS_CAN2 FALSE
|
|
|
|
#define STM32_CAN_MAX_FILTERS 14
|
|
|
|
|
|
|
|
/* DAC attributes.*/
|
2015-05-13 11:31:25 +00:00
|
|
|
#define STM32_HAS_DAC1_CH1 TRUE
|
|
|
|
#define STM32_DAC_DAC1_CH1_DMA_STREAM STM32_DMA_STREAM_ID(2, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC1_CH2 TRUE
|
|
|
|
#define STM32_DAC_DAC1_CH2_DMA_STREAM STM32_DMA_STREAM_ID(2, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC2_CH1 FALSE
|
|
|
|
#define STM32_HAS_DAC2_CH2 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* DMA attributes.*/
|
|
|
|
#define STM32_ADVANCED_DMA FALSE
|
2015-09-21 11:01:37 +00:00
|
|
|
#define STM32_DMA_SUPPORTS_CSELR FALSE
|
|
|
|
|
|
|
|
#define STM32_DMA1_NUM_CHANNELS 7
|
|
|
|
#define STM32_DMA1_CH1_HANDLER Vector6C
|
|
|
|
#define STM32_DMA1_CH2_HANDLER Vector70
|
|
|
|
#define STM32_DMA1_CH3_HANDLER Vector74
|
|
|
|
#define STM32_DMA1_CH4_HANDLER Vector78
|
|
|
|
#define STM32_DMA1_CH5_HANDLER Vector7C
|
|
|
|
#define STM32_DMA1_CH6_HANDLER Vector80
|
|
|
|
#define STM32_DMA1_CH7_HANDLER Vector84
|
|
|
|
#define STM32_DMA1_CH1_NUMBER 11
|
|
|
|
#define STM32_DMA1_CH2_NUMBER 12
|
|
|
|
#define STM32_DMA1_CH3_NUMBER 13
|
|
|
|
#define STM32_DMA1_CH4_NUMBER 14
|
|
|
|
#define STM32_DMA1_CH5_NUMBER 15
|
|
|
|
#define STM32_DMA1_CH6_NUMBER 16
|
|
|
|
#define STM32_DMA1_CH7_NUMBER 17
|
|
|
|
|
|
|
|
#define STM32_DMA2_NUM_CHANNELS 5
|
|
|
|
#define STM32_DMA2_CH1_HANDLER Vector120
|
|
|
|
#define STM32_DMA2_CH2_HANDLER Vector124
|
|
|
|
#define STM32_DMA2_CH3_HANDLER Vector128
|
|
|
|
#define STM32_DMA2_CH4_HANDLER Vector12C
|
|
|
|
#define STM32_DMA2_CH5_HANDLER Vector130
|
|
|
|
#define STM32_DMA2_CH1_NUMBER 56
|
|
|
|
#define STM32_DMA2_CH2_NUMBER 57
|
|
|
|
#define STM32_DMA2_CH3_NUMBER 58
|
|
|
|
#define STM32_DMA2_CH4_NUMBER 59
|
|
|
|
#define STM32_DMA2_CH5_NUMBER 60
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* ETH attributes.*/
|
|
|
|
#define STM32_HAS_ETH FALSE
|
|
|
|
|
|
|
|
/* EXTI attributes.*/
|
2015-07-28 11:44:32 +00:00
|
|
|
#define STM32_EXTI_NUM_LINES 34
|
|
|
|
#define STM32_EXTI_IMR_MASK 0x1F800000U
|
|
|
|
#define STM32_EXTI_IMR2_MASK 0xFFFFFFFCU
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* 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
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_GPIOJ FALSE
|
|
|
|
#define STM32_HAS_GPIOK FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_GPIO_EN_MASK (RCC_AHBENR_GPIOAEN | \
|
|
|
|
RCC_AHBENR_GPIOBEN | \
|
|
|
|
RCC_AHBENR_GPIOCEN | \
|
|
|
|
RCC_AHBENR_GPIODEN | \
|
|
|
|
RCC_AHBENR_GPIOEEN | \
|
|
|
|
RCC_AHBENR_GPIOFEN)
|
|
|
|
|
|
|
|
/* I2C attributes.*/
|
|
|
|
#define STM32_HAS_I2C1 TRUE
|
|
|
|
#define STM32_I2C_I2C1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
#define STM32_I2C_I2C1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C2 TRUE
|
|
|
|
#define STM32_I2C_I2C2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_I2C_I2C2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C3 FALSE
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_I2C4 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* RTC attributes.*/
|
|
|
|
#define STM32_HAS_RTC TRUE
|
|
|
|
#define STM32_RTC_HAS_SUBSECONDS TRUE
|
|
|
|
#define STM32_RTC_HAS_PERIODIC_WAKEUPS TRUE
|
|
|
|
#define STM32_RTC_NUM_ALARMS 1
|
|
|
|
#define STM32_RTC_HAS_INTERRUPTS FALSE
|
|
|
|
|
|
|
|
/* SDIO attributes.*/
|
|
|
|
#define STM32_HAS_SDIO FALSE
|
|
|
|
|
|
|
|
/* SPI attributes.*/
|
|
|
|
#define STM32_HAS_SPI1 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI1_SUPPORTS_I2S FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_SPI_SPI1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
#define STM32_SPI_SPI1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI2 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI2_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI2_I2S_FULLDUPLEX TRUE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_SPI_SPI2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
#define STM32_SPI_SPI2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI3 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI3_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI3_I2S_FULLDUPLEX TRUE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_SPI_SPI3_RX_DMA_STREAM STM32_DMA_STREAM_ID(2, 1)
|
|
|
|
#define STM32_SPI_SPI3_TX_DMA_STREAM STM32_DMA_STREAM_ID(2, 2)
|
|
|
|
|
|
|
|
#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_TIM15 TRUE
|
|
|
|
#define STM32_TIM15_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM15_CHANNELS 2
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM16 TRUE
|
|
|
|
#define STM32_TIM16_IS_32BITS FALSE
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_TIM16_CHANNELS 1
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
#define STM32_HAS_TIM17 TRUE
|
|
|
|
#define STM32_TIM17_IS_32BITS FALSE
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_TIM17_CHANNELS 1
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
#define STM32_HAS_TIM5 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_TIM14 FALSE
|
|
|
|
#define STM32_HAS_TIM18 FALSE
|
|
|
|
#define STM32_HAS_TIM19 FALSE
|
2015-07-26 06:17:10 +00:00
|
|
|
#define STM32_HAS_TIM20 FALSE
|
|
|
|
#define STM32_HAS_TIM21 FALSE
|
|
|
|
#define STM32_HAS_TIM22 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* USART attributes.*/
|
|
|
|
#define STM32_HAS_USART1 TRUE
|
|
|
|
#define STM32_UART_USART1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_UART_USART1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART2 TRUE
|
|
|
|
#define STM32_UART_USART2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
#define STM32_UART_USART2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART3 TRUE
|
|
|
|
#define STM32_UART_USART3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
#define STM32_UART_USART3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
|
|
|
|
#define STM32_HAS_UART4 TRUE
|
|
|
|
#define STM32_UART_UART4_RX_DMA_STREAM STM32_DMA_STREAM_ID(2, 3)
|
|
|
|
#define STM32_UART_UART4_TX_DMA_STREAM STM32_DMA_STREAM_ID(2, 5)
|
|
|
|
|
|
|
|
#define STM32_HAS_UART5 TRUE
|
|
|
|
|
|
|
|
#define STM32_HAS_USART6 FALSE
|
2015-11-28 10:55:48 +00:00
|
|
|
#define STM32_HAS_UART7 FALSE
|
|
|
|
#define STM32_HAS_UART8 FALSE
|
|
|
|
#define STM32_HAS_LPUART1 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* USB attributes.*/
|
|
|
|
#define STM32_HAS_USB TRUE
|
2014-12-21 09:32:52 +00:00
|
|
|
#define STM32_USB_ACCESS_SCHEME_2x16 FALSE
|
|
|
|
#define STM32_USB_PMA_SIZE 512
|
2014-12-20 16:53:05 +00:00
|
|
|
#define STM32_USB_HAS_BCDR FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_HAS_OTG1 FALSE
|
|
|
|
#define STM32_HAS_OTG2 FALSE
|
2015-06-26 08:15:18 +00:00
|
|
|
|
2015-12-03 15:16:07 +00:00
|
|
|
/* IWDG attributes.*/
|
|
|
|
#define STM32_HAS_IWDG TRUE
|
|
|
|
#define STM32_IWDG_IS_WINDOWED TRUE
|
|
|
|
|
2015-06-26 08:15:18 +00:00
|
|
|
/* LTDC attributes.*/
|
|
|
|
#define STM32_HAS_LTDC FALSE
|
|
|
|
|
|
|
|
/* DMA2D attributes.*/
|
|
|
|
#define STM32_HAS_DMA2D FALSE
|
|
|
|
|
|
|
|
/* FSMC attributes.*/
|
|
|
|
#define STM32_HAS_FSMC FALSE
|
2015-07-04 07:17:45 +00:00
|
|
|
|
|
|
|
/* CRC attributes.*/
|
|
|
|
#define STM32_HAS_CRC TRUE
|
|
|
|
#define STM32_CRC_PROGRAMMABLE TRUE
|
2014-09-28 08:06:08 +00:00
|
|
|
#endif /* defined(STM32F358xC) */
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
2015-04-24 14:31:26 +00:00
|
|
|
/* STM32F334x8. */
|
2014-09-28 08:06:08 +00:00
|
|
|
/*===========================================================================*/
|
2015-12-12 16:26:56 +00:00
|
|
|
#if defined(STM32F334x8)
|
2014-09-28 08:06:08 +00:00
|
|
|
/* ADC attributes.*/
|
|
|
|
#define STM32_HAS_ADC1 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC1_HANDLER Vector88
|
|
|
|
#define STM32_ADC1_NUMBER 18
|
|
|
|
#define STM32_ADC1_DMA_MSK (STM32_DMA_STREAM_ID_MSK(1, 1))
|
|
|
|
#define STM32_ADC1_DMA_CHN 0x00000000
|
|
|
|
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_HAS_ADC2 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC2_HANDLER Vector88
|
|
|
|
#define STM32_ADC2_NUMBER 18
|
|
|
|
#define STM32_ADC2_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 1) |\
|
|
|
|
STM32_DMA_STREAM_ID_MSK(2, 3))
|
|
|
|
#define STM32_ADC2_DMA_CHN 0x00000000
|
|
|
|
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_HAS_ADC3 FALSE
|
|
|
|
#define STM32_HAS_ADC4 FALSE
|
|
|
|
|
|
|
|
#define STM32_HAS_SDADC1 FALSE
|
|
|
|
#define STM32_HAS_SDADC2 FALSE
|
|
|
|
#define STM32_HAS_SDADC3 FALSE
|
|
|
|
|
|
|
|
/* CAN attributes.*/
|
|
|
|
#define STM32_HAS_CAN1 TRUE
|
|
|
|
#define STM32_HAS_CAN2 FALSE
|
|
|
|
#define STM32_CAN_MAX_FILTERS 14
|
|
|
|
|
|
|
|
/* DAC attributes.*/
|
2015-05-13 11:31:25 +00:00
|
|
|
#define STM32_HAS_DAC1_CH1 TRUE
|
|
|
|
#define STM32_DAC_DAC1_CH1_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC1_CH2 TRUE
|
|
|
|
#define STM32_DAC_DAC1_CH2_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC2_CH1 TRUE
|
|
|
|
#define STM32_DAC_DAC2_CH1_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC2_CH2 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* DMA attributes.*/
|
|
|
|
#define STM32_ADVANCED_DMA FALSE
|
2015-09-21 11:01:37 +00:00
|
|
|
#define STM32_DMA_SUPPORTS_CSELR FALSE
|
|
|
|
|
|
|
|
#define STM32_DMA1_NUM_CHANNELS 7
|
|
|
|
#define STM32_DMA1_CH1_HANDLER Vector6C
|
|
|
|
#define STM32_DMA1_CH2_HANDLER Vector70
|
|
|
|
#define STM32_DMA1_CH3_HANDLER Vector74
|
|
|
|
#define STM32_DMA1_CH4_HANDLER Vector78
|
|
|
|
#define STM32_DMA1_CH5_HANDLER Vector7C
|
|
|
|
#define STM32_DMA1_CH6_HANDLER Vector80
|
|
|
|
#define STM32_DMA1_CH7_HANDLER Vector84
|
|
|
|
#define STM32_DMA1_CH1_NUMBER 11
|
|
|
|
#define STM32_DMA1_CH2_NUMBER 12
|
|
|
|
#define STM32_DMA1_CH3_NUMBER 13
|
|
|
|
#define STM32_DMA1_CH4_NUMBER 14
|
|
|
|
#define STM32_DMA1_CH5_NUMBER 15
|
|
|
|
#define STM32_DMA1_CH6_NUMBER 16
|
|
|
|
#define STM32_DMA1_CH7_NUMBER 17
|
|
|
|
|
|
|
|
#define STM32_DMA2_NUM_CHANNELS 0
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* ETH attributes.*/
|
|
|
|
#define STM32_HAS_ETH FALSE
|
|
|
|
|
|
|
|
/* EXTI attributes.*/
|
2015-07-28 11:44:32 +00:00
|
|
|
#define STM32_EXTI_NUM_LINES 33
|
|
|
|
#define STM32_EXTI_IMR_MASK 0x1F800000U
|
|
|
|
#define STM32_EXTI_IMR2_MASK 0xFFFFFFFCU
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* 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
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_GPIOJ FALSE
|
|
|
|
#define STM32_HAS_GPIOK FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_GPIO_EN_MASK (RCC_AHBENR_GPIOAEN | \
|
|
|
|
RCC_AHBENR_GPIOBEN | \
|
|
|
|
RCC_AHBENR_GPIOCEN | \
|
|
|
|
RCC_AHBENR_GPIODEN | \
|
|
|
|
RCC_AHBENR_GPIOFEN)
|
|
|
|
|
|
|
|
/* I2C attributes.*/
|
|
|
|
#define STM32_HAS_I2C1 TRUE
|
|
|
|
#define STM32_I2C_I2C1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
#define STM32_I2C_I2C1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C2 FALSE
|
|
|
|
#define STM32_HAS_I2C3 FALSE
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_I2C4 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* RTC attributes.*/
|
|
|
|
#define STM32_HAS_RTC TRUE
|
|
|
|
#define STM32_RTC_HAS_SUBSECONDS TRUE
|
|
|
|
#define STM32_RTC_HAS_PERIODIC_WAKEUPS TRUE
|
|
|
|
#define STM32_RTC_NUM_ALARMS 1
|
|
|
|
#define STM32_RTC_HAS_INTERRUPTS FALSE
|
|
|
|
|
|
|
|
/* SDIO attributes.*/
|
|
|
|
#define STM32_HAS_SDIO FALSE
|
|
|
|
|
|
|
|
/* SPI attributes.*/
|
|
|
|
#define STM32_HAS_SPI1 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI1_SUPPORTS_I2S FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
#define STM32_SPI_SPI1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
#define STM32_SPI_SPI1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI2 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_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_TIM15 TRUE
|
|
|
|
#define STM32_TIM15_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM15_CHANNELS 2
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM16 TRUE
|
|
|
|
#define STM32_TIM16_IS_32BITS FALSE
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_TIM16_CHANNELS 1
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
#define STM32_HAS_TIM17 TRUE
|
|
|
|
#define STM32_TIM17_IS_32BITS FALSE
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_TIM17_CHANNELS 1
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
#define STM32_HAS_TIM4 FALSE
|
|
|
|
#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_TIM14 FALSE
|
|
|
|
#define STM32_HAS_TIM18 FALSE
|
|
|
|
#define STM32_HAS_TIM19 FALSE
|
2015-07-26 06:17:10 +00:00
|
|
|
#define STM32_HAS_TIM20 FALSE
|
|
|
|
#define STM32_HAS_TIM21 FALSE
|
|
|
|
#define STM32_HAS_TIM22 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* USART attributes.*/
|
|
|
|
#define STM32_HAS_USART1 TRUE
|
|
|
|
#define STM32_UART_USART1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_UART_USART1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART2 TRUE
|
|
|
|
#define STM32_UART_USART2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
#define STM32_UART_USART2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART3 TRUE
|
|
|
|
#define STM32_UART_USART3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
#define STM32_UART_USART3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
|
|
|
|
#define STM32_HAS_UART4 FALSE
|
|
|
|
#define STM32_HAS_UART5 FALSE
|
|
|
|
#define STM32_HAS_USART6 FALSE
|
2015-11-28 10:55:48 +00:00
|
|
|
#define STM32_HAS_UART7 FALSE
|
|
|
|
#define STM32_HAS_UART8 FALSE
|
|
|
|
#define STM32_HAS_LPUART1 FALSE
|
2014-09-28 08:06:08 +00:00
|
|
|
|
|
|
|
/* USB attributes.*/
|
|
|
|
#define STM32_HAS_USB FALSE
|
|
|
|
#define STM32_HAS_OTG1 FALSE
|
|
|
|
#define STM32_HAS_OTG2 FALSE
|
2015-06-26 08:15:18 +00:00
|
|
|
|
2015-12-03 15:16:07 +00:00
|
|
|
/* IWDG attributes.*/
|
|
|
|
#define STM32_HAS_IWDG TRUE
|
|
|
|
#define STM32_IWDG_IS_WINDOWED TRUE
|
|
|
|
|
2015-06-26 08:15:18 +00:00
|
|
|
/* LTDC attributes.*/
|
|
|
|
#define STM32_HAS_LTDC FALSE
|
|
|
|
|
|
|
|
/* DMA2D attributes.*/
|
|
|
|
#define STM32_HAS_DMA2D FALSE
|
|
|
|
|
|
|
|
/* FSMC attributes.*/
|
|
|
|
#define STM32_HAS_FSMC FALSE
|
2015-07-04 07:17:45 +00:00
|
|
|
|
|
|
|
/* CRC attributes.*/
|
|
|
|
#define STM32_HAS_CRC TRUE
|
|
|
|
#define STM32_CRC_PROGRAMMABLE TRUE
|
2014-10-02 16:34:45 +00:00
|
|
|
#endif /* defined(STM32F334x8) */
|
2014-09-28 08:06:08 +00:00
|
|
|
|
2015-12-12 16:26:56 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* STM32F398xx. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
#if defined(STM32F398xx)
|
|
|
|
/* ADC attributes.*/
|
|
|
|
#define STM32_HAS_ADC1 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC1_HANDLER Vector88
|
|
|
|
#define STM32_ADC1_NUMBER 18
|
|
|
|
#define STM32_ADC1_DMA_MSK (STM32_DMA_STREAM_ID_MSK(1, 1))
|
|
|
|
#define STM32_ADC1_DMA_CHN 0x00000000
|
|
|
|
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_HAS_ADC2 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC2_HANDLER Vector88
|
|
|
|
#define STM32_ADC2_NUMBER 18
|
|
|
|
#define STM32_ADC2_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 1) |\
|
|
|
|
STM32_DMA_STREAM_ID_MSK(2, 3))
|
|
|
|
#define STM32_ADC2_DMA_CHN 0x00000000
|
|
|
|
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_HAS_ADC3 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC3_HANDLER VectorFC
|
|
|
|
#define STM32_ADC3_NUMBER 47
|
|
|
|
#define STM32_ADC3_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 5))
|
|
|
|
#define STM32_ADC3_DMA_CHN 0x00000000
|
|
|
|
|
2015-12-12 16:26:56 +00:00
|
|
|
#define STM32_HAS_ADC4 TRUE
|
2015-12-14 14:38:16 +00:00
|
|
|
#define STM32_ADC4_HANDLER Vector134
|
|
|
|
#define STM32_ADC4_NUMBER 61
|
|
|
|
#define STM32_ADC4_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 2) |\
|
|
|
|
STM32_DMA_STREAM_ID_MSK(2, 4))
|
|
|
|
#define STM32_ADC4_DMA_CHN 0x00000000
|
2015-12-12 16:26:56 +00:00
|
|
|
|
|
|
|
#define STM32_HAS_SDADC1 FALSE
|
|
|
|
#define STM32_HAS_SDADC2 FALSE
|
|
|
|
#define STM32_HAS_SDADC3 FALSE
|
|
|
|
|
|
|
|
/* CAN attributes.*/
|
|
|
|
#define STM32_HAS_CAN1 TRUE
|
|
|
|
#define STM32_HAS_CAN2 FALSE
|
|
|
|
#define STM32_CAN_MAX_FILTERS 14
|
|
|
|
|
|
|
|
/* DAC attributes.*/
|
|
|
|
#define STM32_HAS_DAC1_CH1 TRUE
|
|
|
|
#define STM32_DAC_DAC1_CH1_DMA_STREAM STM32_DMA_STREAM_ID(2, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC1_CH2 TRUE
|
|
|
|
#define STM32_DAC_DAC1_CH2_DMA_STREAM STM32_DMA_STREAM_ID(2, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_DAC2_CH1 FALSE
|
|
|
|
#define STM32_HAS_DAC2_CH2 FALSE
|
|
|
|
|
|
|
|
/* DMA attributes.*/
|
|
|
|
#define STM32_ADVANCED_DMA FALSE
|
|
|
|
#define STM32_DMA_SUPPORTS_CSELR FALSE
|
|
|
|
|
|
|
|
#define STM32_DMA1_NUM_CHANNELS 7
|
|
|
|
#define STM32_DMA1_CH1_HANDLER Vector6C
|
|
|
|
#define STM32_DMA1_CH2_HANDLER Vector70
|
|
|
|
#define STM32_DMA1_CH3_HANDLER Vector74
|
|
|
|
#define STM32_DMA1_CH4_HANDLER Vector78
|
|
|
|
#define STM32_DMA1_CH5_HANDLER Vector7C
|
|
|
|
#define STM32_DMA1_CH6_HANDLER Vector80
|
|
|
|
#define STM32_DMA1_CH7_HANDLER Vector84
|
|
|
|
#define STM32_DMA1_CH1_NUMBER 11
|
|
|
|
#define STM32_DMA1_CH2_NUMBER 12
|
|
|
|
#define STM32_DMA1_CH3_NUMBER 13
|
|
|
|
#define STM32_DMA1_CH4_NUMBER 14
|
|
|
|
#define STM32_DMA1_CH5_NUMBER 15
|
|
|
|
#define STM32_DMA1_CH6_NUMBER 16
|
|
|
|
#define STM32_DMA1_CH7_NUMBER 17
|
|
|
|
|
|
|
|
#define STM32_DMA2_NUM_CHANNELS 5
|
|
|
|
#define STM32_DMA2_CH1_HANDLER Vector120
|
|
|
|
#define STM32_DMA2_CH2_HANDLER Vector124
|
|
|
|
#define STM32_DMA2_CH3_HANDLER Vector128
|
|
|
|
#define STM32_DMA2_CH4_HANDLER Vector12C
|
|
|
|
#define STM32_DMA2_CH5_HANDLER Vector130
|
|
|
|
#define STM32_DMA2_CH1_NUMBER 56
|
|
|
|
#define STM32_DMA2_CH2_NUMBER 57
|
|
|
|
#define STM32_DMA2_CH3_NUMBER 58
|
|
|
|
#define STM32_DMA2_CH4_NUMBER 59
|
|
|
|
#define STM32_DMA2_CH5_NUMBER 60
|
|
|
|
|
|
|
|
/* ETH attributes.*/
|
|
|
|
#define STM32_HAS_ETH FALSE
|
|
|
|
|
|
|
|
/* EXTI attributes.*/
|
|
|
|
#define STM32_EXTI_NUM_LINES 34
|
|
|
|
#define STM32_EXTI_IMR_MASK 0x1F800000U
|
|
|
|
#define STM32_EXTI_IMR2_MASK 0xFFFFFFFCU
|
|
|
|
|
|
|
|
/* 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 TRUE
|
|
|
|
#define STM32_HAS_GPIOH TRUE
|
|
|
|
#define STM32_HAS_GPIOI FALSE
|
|
|
|
#define STM32_HAS_GPIOJ FALSE
|
|
|
|
#define STM32_HAS_GPIOK FALSE
|
|
|
|
#define STM32_GPIO_EN_MASK (RCC_AHBENR_GPIOAEN | \
|
|
|
|
RCC_AHBENR_GPIOBEN | \
|
|
|
|
RCC_AHBENR_GPIOCEN | \
|
|
|
|
RCC_AHBENR_GPIODEN | \
|
|
|
|
RCC_AHBENR_GPIOEEN | \
|
|
|
|
RCC_AHBENR_GPIOFEN | \
|
|
|
|
RCC_AHBENR_GPIOGEN | \
|
|
|
|
RCC_AHBENR_GPIOHEN)
|
|
|
|
|
|
|
|
/* I2C attributes.*/
|
|
|
|
#define STM32_HAS_I2C1 TRUE
|
|
|
|
#define STM32_I2C_I2C1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
#define STM32_I2C_I2C1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C2 TRUE
|
|
|
|
#define STM32_I2C_I2C2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_I2C_I2C2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C3 TRUE
|
|
|
|
#define STM32_I2C_I2C3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
#define STM32_I2C_I2C3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 1)
|
|
|
|
|
|
|
|
#define STM32_HAS_I2C4 FALSE
|
|
|
|
|
|
|
|
/* RTC attributes.*/
|
|
|
|
#define STM32_HAS_RTC TRUE
|
|
|
|
#define STM32_RTC_HAS_SUBSECONDS TRUE
|
|
|
|
#define STM32_RTC_HAS_PERIODIC_WAKEUPS TRUE
|
|
|
|
#define STM32_RTC_NUM_ALARMS 2
|
|
|
|
#define STM32_RTC_HAS_INTERRUPTS FALSE
|
|
|
|
|
|
|
|
/* SDIO attributes.*/
|
|
|
|
#define STM32_HAS_SDIO FALSE
|
|
|
|
|
|
|
|
/* SPI attributes.*/
|
|
|
|
#define STM32_HAS_SPI1 TRUE
|
|
|
|
#define STM32_SPI1_SUPPORTS_I2S FALSE
|
|
|
|
#define STM32_SPI_SPI1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
#define STM32_SPI_SPI1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI2 TRUE
|
|
|
|
#define STM32_SPI2_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI2_I2S_FULLDUPLEX TRUE
|
|
|
|
#define STM32_SPI_SPI2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
#define STM32_SPI_SPI2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI3 TRUE
|
|
|
|
#define STM32_SPI3_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI3_I2S_FULLDUPLEX TRUE
|
|
|
|
#define STM32_SPI_SPI3_RX_DMA_STREAM STM32_DMA_STREAM_ID(2, 1)
|
|
|
|
#define STM32_SPI_SPI3_TX_DMA_STREAM STM32_DMA_STREAM_ID(2, 2)
|
|
|
|
|
|
|
|
#define STM32_HAS_SPI4 TRUE
|
|
|
|
#define STM32_SPI4_SUPPORTS_I2S FALSE
|
|
|
|
#define STM32_SPI_SPI4_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
#define STM32_SPI_SPI4_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
|
|
|
|
#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_TIM8 TRUE
|
|
|
|
#define STM32_TIM8_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM8_CHANNELS 6
|
|
|
|
|
|
|
|
#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_TIM20 TRUE
|
|
|
|
#define STM32_TIM20_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM20_CHANNELS 4
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM5 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_TIM14 FALSE
|
|
|
|
#define STM32_HAS_TIM18 FALSE
|
|
|
|
#define STM32_HAS_TIM19 FALSE
|
|
|
|
#define STM32_HAS_TIM21 FALSE
|
|
|
|
#define STM32_HAS_TIM22 FALSE
|
|
|
|
|
|
|
|
/* USART attributes.*/
|
|
|
|
#define STM32_HAS_USART1 TRUE
|
|
|
|
#define STM32_UART_USART1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
|
|
|
|
#define STM32_UART_USART1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 4)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART2 TRUE
|
|
|
|
#define STM32_UART_USART2_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
|
|
|
|
#define STM32_UART_USART2_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
|
|
|
|
|
|
|
|
#define STM32_HAS_USART3 TRUE
|
|
|
|
#define STM32_UART_USART3_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
|
|
|
|
#define STM32_UART_USART3_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 2)
|
|
|
|
|
|
|
|
#define STM32_HAS_UART4 TRUE
|
|
|
|
#define STM32_UART_UART4_RX_DMA_STREAM STM32_DMA_STREAM_ID(2, 3)
|
|
|
|
#define STM32_UART_UART4_TX_DMA_STREAM STM32_DMA_STREAM_ID(2, 5)
|
|
|
|
|
|
|
|
#define STM32_HAS_UART5 TRUE
|
|
|
|
|
|
|
|
#define STM32_HAS_USART6 FALSE
|
|
|
|
#define STM32_HAS_UART7 FALSE
|
|
|
|
#define STM32_HAS_UART8 FALSE
|
|
|
|
#define STM32_HAS_LPUART1 FALSE
|
|
|
|
|
|
|
|
/* USB attributes.*/
|
|
|
|
#define STM32_HAS_USB FALSE
|
|
|
|
#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 TRUE
|
|
|
|
#define STM32_FSMC_IS_FMC FALSE
|
|
|
|
|
|
|
|
/* CRC attributes.*/
|
|
|
|
#define STM32_HAS_CRC TRUE
|
|
|
|
#define STM32_CRC_PROGRAMMABLE TRUE
|
|
|
|
#endif /* defined(STM32F398xx) */
|
|
|
|
|
2013-08-04 13:38:53 +00:00
|
|
|
/** @} */
|
|
|
|
|
|
|
|
#endif /* _STM32_REGISTRY_H_ */
|
|
|
|
|
|
|
|
/** @} */
|