2013-10-02 10:03:05 +00:00
|
|
|
/*
|
2015-01-11 13:56:55 +00:00
|
|
|
ChibiOS - Copyright (C) 2006..2015 Giovanni Di Sirio
|
2013-10-02 10:03:05 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file STM32F1xx/stm32_registry.h
|
|
|
|
* @brief STM32F1xx capabilities registry.
|
|
|
|
*
|
|
|
|
* @addtogroup HAL
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _STM32_REGISTRY_H_
|
|
|
|
#define _STM32_REGISTRY_H_
|
|
|
|
|
2015-09-21 11:01:37 +00:00
|
|
|
#if defined(STM32F100xB)
|
|
|
|
#define STM32F10X_MD_VL
|
2013-10-02 10:03:05 +00:00
|
|
|
|
2015-09-21 11:01:37 +00:00
|
|
|
#elif defined(STM32F100xE)
|
|
|
|
#define STM32F10X_HD_VL
|
2013-10-02 10:03:05 +00:00
|
|
|
|
2015-09-21 11:01:37 +00:00
|
|
|
#elif defined(STM32F101x6) || defined(STM32F102x6) || defined(STM32F103x6)
|
|
|
|
#define STM32F10X_LD
|
2013-10-02 10:03:05 +00:00
|
|
|
|
2015-09-21 11:01:37 +00:00
|
|
|
#elif defined(STM32F101xB) || defined(STM32F102xB) || defined(STM32F103xB)
|
|
|
|
#define STM32F10X_MD
|
2013-10-02 10:03:05 +00:00
|
|
|
|
2015-09-21 11:01:37 +00:00
|
|
|
#elif defined(STM32F101xE) || defined(STM32F103xE)
|
|
|
|
#define STM32F10X_HD
|
2015-05-13 11:31:25 +00:00
|
|
|
|
2015-09-21 11:01:37 +00:00
|
|
|
#elif defined(STM32F101xG) || defined(STM32F103xG)
|
|
|
|
#define STM32F10X_XL
|
2013-10-02 10:03:05 +00:00
|
|
|
|
2015-09-21 11:01:37 +00:00
|
|
|
#elif defined(STM32F105xC) || defined(STM32F107xC)
|
|
|
|
#define STM32F10X_CL
|
2013-10-02 10:03:05 +00:00
|
|
|
|
2015-09-21 11:01:37 +00:00
|
|
|
#else
|
|
|
|
#error "unsupported or unrecognized STM32F1xx member"
|
|
|
|
#endif
|
2013-10-02 10:03:05 +00:00
|
|
|
|
2015-09-21 11:01:37 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Platform capabilities. */
|
|
|
|
/*===========================================================================*/
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
#if defined(STM32F10X_MD_VL) || defined(__DOXYGEN__)
|
|
|
|
/**
|
|
|
|
* @name STM32F100 MD capabilities
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
/* ADC attributes.*/
|
|
|
|
#define STM32_HAS_ADC1 TRUE
|
|
|
|
#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 0
|
|
|
|
|
|
|
|
/* 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 FALSE
|
|
|
|
#define STM32_HAS_DAC2_CH2 FALSE
|
2013-10-02 10:03:05 +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
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* ETH attributes.*/
|
|
|
|
#define STM32_HAS_ETH FALSE
|
|
|
|
|
|
|
|
/* EXTI attributes.*/
|
2015-07-28 11:44:32 +00:00
|
|
|
#define STM32_EXTI_NUM_LINES 19
|
2015-07-28 14:22:57 +00:00
|
|
|
#define STM32_EXTI_IMR_MASK 0x00000000U
|
2013-10-02 10:03:05 +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 FALSE
|
|
|
|
#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
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* 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
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* RTC attributes.*/
|
|
|
|
#define STM32_HAS_RTC TRUE
|
|
|
|
#define STM32_RTC_HAS_SUBSECONDS TRUE
|
|
|
|
#define STM32_RTC_IS_CALENDAR 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
|
2013-10-02 10:03:05 +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 FALSE
|
2013-10-02 10:03:05 +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 FALSE
|
2013-12-03 15:17:11 +00:00
|
|
|
#define STM32_HAS_SPI4 FALSE
|
|
|
|
#define STM32_HAS_SPI5 FALSE
|
|
|
|
#define STM32_HAS_SPI6 FALSE
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* TIM attributes.*/
|
|
|
|
#define STM32_TIM_MAX_CHANNELS 4
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM1 TRUE
|
|
|
|
#define STM32_TIM1_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM1_CHANNELS 4
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM2 TRUE
|
2015-07-04 07:11:19 +00:00
|
|
|
#define STM32_TIM2_IS_32BITS FALSE
|
2013-10-02 10:03:05 +00:00
|
|
|
#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
|
|
|
|
#define STM32_TIM16_CHANNELS 2
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM17 TRUE
|
|
|
|
#define STM32_TIM17_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM17_CHANNELS 2
|
|
|
|
|
|
|
|
#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
|
2013-10-02 10:03:05 +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-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_UART7 FALSE
|
|
|
|
#define STM32_HAS_UART8 FALSE
|
2015-11-28 10:55:48 +00:00
|
|
|
#define STM32_HAS_LPUART1 FALSE
|
2013-10-02 10:03:05 +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 FALSE
|
|
|
|
|
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 FALSE
|
2013-10-02 10:03:05 +00:00
|
|
|
/** @} */
|
|
|
|
#endif /* defined(STM32F10X_MD_VL) */
|
|
|
|
|
|
|
|
#if defined(STM32F10X_LD) || defined(__DOXYGEN__)
|
|
|
|
/**
|
|
|
|
* @name STM32F103 LD capabilities
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
/* ADC attributes.*/
|
|
|
|
#define STM32_HAS_ADC1 TRUE
|
|
|
|
#define STM32_HAS_ADC2 TRUE
|
|
|
|
#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 FALSE
|
|
|
|
#define STM32_HAS_DAC1_CH2 FALSE
|
|
|
|
#define STM32_HAS_DAC2_CH1 FALSE
|
|
|
|
#define STM32_HAS_DAC2_CH2 FALSE
|
2013-10-02 10:03:05 +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
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* ETH attributes.*/
|
|
|
|
#define STM32_HAS_ETH FALSE
|
|
|
|
|
|
|
|
/* EXTI attributes.*/
|
2015-07-28 11:44:32 +00:00
|
|
|
#define STM32_EXTI_NUM_LINES 19
|
2015-07-28 14:22:57 +00:00
|
|
|
#define STM32_EXTI_IMR_MASK 0x00000000U
|
2013-10-02 10:03:05 +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 FALSE
|
|
|
|
#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
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* 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
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* RTC attributes.*/
|
|
|
|
#define STM32_HAS_RTC TRUE
|
|
|
|
#define STM32_RTC_HAS_SUBSECONDS TRUE
|
|
|
|
#define STM32_RTC_IS_CALENDAR 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
|
2013-10-02 10:03:05 +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
|
2013-12-03 15:17:11 +00:00
|
|
|
#define STM32_HAS_SPI4 FALSE
|
|
|
|
#define STM32_HAS_SPI5 FALSE
|
|
|
|
#define STM32_HAS_SPI6 FALSE
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* TIM attributes.*/
|
|
|
|
#define STM32_TIM_MAX_CHANNELS 4
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM1 TRUE
|
|
|
|
#define STM32_TIM1_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM1_CHANNELS 4
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM2 TRUE
|
2015-07-04 07:11:19 +00:00
|
|
|
#define STM32_TIM2_IS_32BITS FALSE
|
2013-10-02 10:03:05 +00:00
|
|
|
#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 FALSE
|
|
|
|
#define STM32_HAS_TIM5 FALSE
|
|
|
|
#define STM32_HAS_TIM6 FALSE
|
|
|
|
#define STM32_HAS_TIM7 FALSE
|
|
|
|
#define STM32_HAS_TIM8 FALSE
|
|
|
|
#define STM32_HAS_TIM9 FALSE
|
|
|
|
#define STM32_HAS_TIM10 FALSE
|
|
|
|
#define STM32_HAS_TIM11 FALSE
|
|
|
|
#define STM32_HAS_TIM12 FALSE
|
|
|
|
#define STM32_HAS_TIM13 FALSE
|
|
|
|
#define STM32_HAS_TIM14 FALSE
|
|
|
|
#define STM32_HAS_TIM15 FALSE
|
|
|
|
#define STM32_HAS_TIM16 FALSE
|
|
|
|
#define STM32_HAS_TIM17 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-10-02 10:03:05 +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 FALSE
|
|
|
|
#define STM32_HAS_UART4 FALSE
|
|
|
|
#define STM32_HAS_UART5 FALSE
|
|
|
|
#define STM32_HAS_USART6 FALSE
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_UART7 FALSE
|
|
|
|
#define STM32_HAS_UART8 FALSE
|
2015-11-28 10:55:48 +00:00
|
|
|
#define STM32_HAS_LPUART1 FALSE
|
2013-10-02 10:03:05 +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 FALSE
|
|
|
|
|
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 FALSE
|
2013-10-02 10:03:05 +00:00
|
|
|
/** @} */
|
|
|
|
#endif /* defined(STM32F10X_LD) */
|
|
|
|
|
|
|
|
#if defined(STM32F10X_MD) || defined(__DOXYGEN__)
|
|
|
|
/**
|
|
|
|
* @name STM32F103 MD capabilities
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
/* ADC attributes.*/
|
|
|
|
#define STM32_HAS_ADC1 TRUE
|
|
|
|
#define STM32_HAS_ADC2 TRUE
|
|
|
|
#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 FALSE
|
|
|
|
#define STM32_HAS_DAC1_CH2 FALSE
|
|
|
|
#define STM32_HAS_DAC2_CH1 FALSE
|
|
|
|
#define STM32_HAS_DAC2_CH2 FALSE
|
2013-10-02 10:03:05 +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
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* ETH attributes.*/
|
|
|
|
#define STM32_HAS_ETH FALSE
|
|
|
|
|
|
|
|
/* EXTI attributes.*/
|
2015-07-28 11:44:32 +00:00
|
|
|
#define STM32_EXTI_NUM_LINES 19
|
2015-07-28 14:22:57 +00:00
|
|
|
#define STM32_EXTI_IMR_MASK 0x00000000U
|
2013-10-02 10:03:05 +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 FALSE
|
|
|
|
#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
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* 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)
|
|
|
|
|
2013-10-05 18:35:39 +00:00
|
|
|
#define STM32_HAS_I2C2 TRUE
|
2013-10-02 10:03:05 +00:00
|
|
|
#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-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* RTC attributes.*/
|
|
|
|
#define STM32_HAS_RTC TRUE
|
|
|
|
#define STM32_RTC_HAS_SUBSECONDS TRUE
|
|
|
|
#define STM32_RTC_IS_CALENDAR 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
|
2013-10-02 10:03:05 +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)
|
|
|
|
|
2013-10-03 14:18:56 +00:00
|
|
|
#define STM32_HAS_SPI2 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI2_SUPPORTS_I2S FALSE
|
2013-10-02 10:03:05 +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 FALSE
|
2013-12-03 15:17:11 +00:00
|
|
|
#define STM32_HAS_SPI4 FALSE
|
|
|
|
#define STM32_HAS_SPI5 FALSE
|
|
|
|
#define STM32_HAS_SPI6 FALSE
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* TIM attributes.*/
|
|
|
|
#define STM32_TIM_MAX_CHANNELS 4
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM1 TRUE
|
|
|
|
#define STM32_TIM1_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM1_CHANNELS 4
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM2 TRUE
|
2015-07-04 07:11:19 +00:00
|
|
|
#define STM32_TIM2_IS_32BITS FALSE
|
2013-10-02 10:03:05 +00:00
|
|
|
#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_TIM5 FALSE
|
|
|
|
#define STM32_HAS_TIM6 FALSE
|
|
|
|
#define STM32_HAS_TIM7 FALSE
|
|
|
|
#define STM32_HAS_TIM8 FALSE
|
|
|
|
#define STM32_HAS_TIM9 FALSE
|
|
|
|
#define STM32_HAS_TIM10 FALSE
|
|
|
|
#define STM32_HAS_TIM11 FALSE
|
|
|
|
#define STM32_HAS_TIM12 FALSE
|
|
|
|
#define STM32_HAS_TIM13 FALSE
|
|
|
|
#define STM32_HAS_TIM14 FALSE
|
|
|
|
#define STM32_HAS_TIM15 FALSE
|
|
|
|
#define STM32_HAS_TIM16 FALSE
|
|
|
|
#define STM32_HAS_TIM17 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-10-02 10:03:05 +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-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_UART7 FALSE
|
|
|
|
#define STM32_HAS_UART8 FALSE
|
2015-11-28 10:55:48 +00:00
|
|
|
#define STM32_HAS_LPUART1 FALSE
|
2013-10-02 10:03:05 +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
|
2013-10-02 10:03:05 +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 FALSE
|
|
|
|
|
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 FALSE
|
2013-10-02 10:03:05 +00:00
|
|
|
/** @} */
|
|
|
|
#endif /* defined(STM32F10X_MD) */
|
|
|
|
|
|
|
|
#if defined(STM32F10X_HD) || defined(__DOXYGEN__)
|
|
|
|
/**
|
|
|
|
* @name STM32F103 HD capabilities
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
/* ADC attributes.*/
|
|
|
|
#define STM32_HAS_ADC1 TRUE
|
|
|
|
#define STM32_HAS_ADC2 TRUE
|
|
|
|
#define STM32_HAS_ADC3 TRUE
|
|
|
|
#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
|
2013-10-02 10:03:05 +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_CH45_HANDLER Vector12C
|
|
|
|
#define STM32_DMA2_CH1_NUMBER 56
|
|
|
|
#define STM32_DMA2_CH2_NUMBER 57
|
|
|
|
#define STM32_DMA2_CH3_NUMBER 58
|
|
|
|
#define STM32_DMA2_CH45_NUMBER 59
|
2013-10-02 10:03:05 +00:00
|
|
|
|
2015-10-22 10:00:10 +00:00
|
|
|
#define STM32_DMA2_CH4_NUMBER STM32_DMA2_CH45_NUMBER
|
|
|
|
#define STM32_DMA2_CH5_NUMBER STM32_DMA2_CH45_NUMBER
|
|
|
|
#define DMA2_CH4_CMASK 0x00000C00U
|
|
|
|
#define DMA2_CH5_CMASK 0x00000C00U
|
|
|
|
|
2013-10-02 10:03:05 +00:00
|
|
|
/* ETH attributes.*/
|
|
|
|
#define STM32_HAS_ETH FALSE
|
|
|
|
|
|
|
|
/* EXTI attributes.*/
|
2015-07-28 11:44:32 +00:00
|
|
|
#define STM32_EXTI_NUM_LINES 19
|
2015-07-28 14:22:57 +00:00
|
|
|
#define STM32_EXTI_IMR_MASK 0x00000000U
|
2013-10-02 10:03:05 +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 TRUE
|
|
|
|
#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
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* 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)
|
|
|
|
|
2013-10-05 18:35:39 +00:00
|
|
|
#define STM32_HAS_I2C2 TRUE
|
2013-10-02 10:03:05 +00:00
|
|
|
#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-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* RTC attributes.*/
|
|
|
|
#define STM32_HAS_RTC TRUE
|
|
|
|
#define STM32_RTC_HAS_SUBSECONDS TRUE
|
|
|
|
#define STM32_RTC_IS_CALENDAR FALSE
|
|
|
|
|
|
|
|
/* SDIO attributes.*/
|
|
|
|
#define STM32_HAS_SDIO TRUE
|
2015-12-16 11:20:23 +00:00
|
|
|
#define STM32_SDC_SDIO_DMA_STREAM STM32_DMA_STREAM_ID(2, 4)
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* SPI attributes.*/
|
|
|
|
#define STM32_HAS_SPI1 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI1_SUPPORTS_I2S FALSE
|
2013-10-02 10:03:05 +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)
|
|
|
|
|
2013-10-03 14:18:56 +00:00
|
|
|
#define STM32_HAS_SPI2 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI2_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI2_I2S_FULLDUPLEX FALSE
|
2013-10-02 10:03:05 +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)
|
|
|
|
|
2013-10-03 14:18:56 +00:00
|
|
|
#define STM32_HAS_SPI3 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI3_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI3_I2S_FULLDUPLEX FALSE
|
2013-10-02 10:03:05 +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-12-03 15:17:11 +00:00
|
|
|
#define STM32_HAS_SPI4 FALSE
|
|
|
|
#define STM32_HAS_SPI5 FALSE
|
|
|
|
#define STM32_HAS_SPI6 FALSE
|
|
|
|
|
2013-10-02 10:03:05 +00:00
|
|
|
/* TIM attributes.*/
|
|
|
|
#define STM32_TIM_MAX_CHANNELS 4
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM1 TRUE
|
|
|
|
#define STM32_TIM1_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM1_CHANNELS 4
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM2 TRUE
|
2015-07-04 07:11:19 +00:00
|
|
|
#define STM32_TIM2_IS_32BITS FALSE
|
2013-10-02 10:03:05 +00:00
|
|
|
#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_TIM5 TRUE
|
|
|
|
#define STM32_TIM5_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM5_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 4
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM9 TRUE
|
|
|
|
#define STM32_TIM9_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM9_CHANNELS 2
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM10 TRUE
|
|
|
|
#define STM32_TIM10_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM10_CHANNELS 2
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM11 TRUE
|
|
|
|
#define STM32_TIM11_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM11_CHANNELS 2
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM12 TRUE
|
|
|
|
#define STM32_TIM12_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM12_CHANNELS 2
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM13 TRUE
|
|
|
|
#define STM32_TIM13_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM13_CHANNELS 2
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM14 TRUE
|
|
|
|
#define STM32_TIM14_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM14_CHANNELS 2
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM15 FALSE
|
|
|
|
#define STM32_HAS_TIM16 FALSE
|
|
|
|
#define STM32_HAS_TIM17 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-10-02 10:03:05 +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 FALSE
|
|
|
|
#define STM32_HAS_USART6 FALSE
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_UART7 FALSE
|
|
|
|
#define STM32_HAS_UART8 FALSE
|
2015-11-28 10:55:48 +00:00
|
|
|
#define STM32_HAS_LPUART1 FALSE
|
2013-10-02 10:03:05 +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
|
2013-10-02 10:03:05 +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 FALSE
|
|
|
|
|
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 FALSE
|
2013-10-02 10:03:05 +00:00
|
|
|
/** @} */
|
|
|
|
#endif /* defined(STM32F10X_HD) */
|
|
|
|
|
|
|
|
#if defined(STM32F10X_XL) || defined(__DOXYGEN__)
|
|
|
|
/**
|
|
|
|
* @name STM32F103 XL capabilities
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
/* ADC attributes.*/
|
|
|
|
#define STM32_HAS_ADC1 TRUE
|
|
|
|
#define STM32_HAS_ADC2 TRUE
|
|
|
|
#define STM32_HAS_ADC3 TRUE
|
|
|
|
#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
|
2013-10-02 10:03:05 +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
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* ETH attributes.*/
|
|
|
|
#define STM32_HAS_ETH FALSE
|
|
|
|
|
|
|
|
/* EXTI attributes.*/
|
2015-07-28 11:44:32 +00:00
|
|
|
#define STM32_EXTI_NUM_LINES 19
|
2015-07-28 14:22:57 +00:00
|
|
|
#define STM32_EXTI_IMR_MASK 0x00000000U
|
2013-10-02 10:03:05 +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 TRUE
|
|
|
|
#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
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* 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)
|
|
|
|
|
2013-10-05 18:35:39 +00:00
|
|
|
#define STM32_HAS_I2C2 TRUE
|
2013-10-02 10:03:05 +00:00
|
|
|
#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-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* RTC attributes.*/
|
|
|
|
#define STM32_HAS_RTC TRUE
|
|
|
|
#define STM32_RTC_HAS_SUBSECONDS TRUE
|
|
|
|
#define STM32_RTC_IS_CALENDAR FALSE
|
|
|
|
|
|
|
|
/* SDIO attributes.*/
|
|
|
|
#define STM32_HAS_SDIO TRUE
|
2015-12-16 11:20:23 +00:00
|
|
|
#define STM32_SDC_SDIO_DMA_STREAM STM32_DMA_STREAM_ID(2, 4)
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* SPI attributes.*/
|
|
|
|
#define STM32_HAS_SPI1 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI1_SUPPORTS_I2S FALSE
|
2013-10-02 10:03:05 +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)
|
|
|
|
|
2013-10-03 14:18:56 +00:00
|
|
|
#define STM32_HAS_SPI2 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI2_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI2_I2S_FULLDUPLEX FALSE
|
2013-10-02 10:03:05 +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)
|
|
|
|
|
2013-10-03 14:18:56 +00:00
|
|
|
#define STM32_HAS_SPI3 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI3_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI3_I2S_FULLDUPLEX FALSE
|
2013-10-02 10:03:05 +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-12-03 15:17:11 +00:00
|
|
|
#define STM32_HAS_SPI4 FALSE
|
|
|
|
#define STM32_HAS_SPI5 FALSE
|
|
|
|
#define STM32_HAS_SPI6 FALSE
|
|
|
|
|
2013-10-02 10:03:05 +00:00
|
|
|
/* TIM attributes.*/
|
|
|
|
#define STM32_TIM_MAX_CHANNELS 4
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM1 TRUE
|
|
|
|
#define STM32_TIM1_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM1_CHANNELS 4
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM2 TRUE
|
2015-07-04 07:11:19 +00:00
|
|
|
#define STM32_TIM2_IS_32BITS FALSE
|
2013-10-02 10:03:05 +00:00
|
|
|
#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_TIM5 TRUE
|
|
|
|
#define STM32_TIM5_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM5_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 4
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM9 TRUE
|
|
|
|
#define STM32_TIM9_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM9_CHANNELS 2
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM10 TRUE
|
|
|
|
#define STM32_TIM10_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM10_CHANNELS 2
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM11 TRUE
|
|
|
|
#define STM32_TIM11_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM11_CHANNELS 2
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM12 TRUE
|
|
|
|
#define STM32_TIM12_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM12_CHANNELS 2
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM13 TRUE
|
|
|
|
#define STM32_TIM13_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM13_CHANNELS 2
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM14 TRUE
|
|
|
|
#define STM32_TIM14_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM14_CHANNELS 2
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM15 FALSE
|
|
|
|
#define STM32_HAS_TIM16 FALSE
|
|
|
|
#define STM32_HAS_TIM17 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-10-02 10:03:05 +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 FALSE
|
|
|
|
#define STM32_HAS_USART6 FALSE
|
2015-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_UART7 FALSE
|
|
|
|
#define STM32_HAS_UART8 FALSE
|
2015-11-28 10:55:48 +00:00
|
|
|
#define STM32_HAS_LPUART1 FALSE
|
2013-10-02 10:03:05 +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
|
2013-10-02 10:03:05 +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 FALSE
|
|
|
|
|
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 FALSE
|
2013-10-02 10:03:05 +00:00
|
|
|
/** @} */
|
|
|
|
#endif /* defined(STM32F10X_XL) */
|
|
|
|
|
|
|
|
#if defined(STM32F10X_CL) || defined(__DOXYGEN__)
|
|
|
|
/**
|
|
|
|
* @name STM32F105/F107 CL capabilities
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
/* ADC attributes.*/
|
|
|
|
#define STM32_HAS_ADC1 TRUE
|
|
|
|
#define STM32_HAS_ADC2 TRUE
|
|
|
|
#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 TRUE
|
|
|
|
#define STM32_CAN_MAX_FILTERS 28
|
|
|
|
|
|
|
|
/* 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-10-02 10:03:05 +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
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* ETH attributes.*/
|
|
|
|
#define STM32_HAS_ETH TRUE
|
2015-08-06 12:52:31 +00:00
|
|
|
#define STM32_ETH_HANDLER Vector134
|
|
|
|
#define STM32_ETH_NUMBER 61
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* EXTI attributes.*/
|
2015-07-28 11:44:32 +00:00
|
|
|
#define STM32_EXTI_NUM_LINES 20
|
2015-07-28 14:22:57 +00:00
|
|
|
#define STM32_EXTI_IMR_MASK 0x00000000U
|
2013-10-02 10:03:05 +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 FALSE
|
|
|
|
#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
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* 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)
|
|
|
|
|
2013-10-05 18:35:39 +00:00
|
|
|
#define STM32_HAS_I2C2 TRUE
|
2013-10-02 10:03:05 +00:00
|
|
|
#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-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* RTC attributes.*/
|
|
|
|
#define STM32_HAS_RTC TRUE
|
|
|
|
#define STM32_RTC_HAS_SUBSECONDS TRUE
|
|
|
|
#define STM32_RTC_IS_CALENDAR 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
|
2013-10-02 10:03:05 +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)
|
|
|
|
|
2013-10-03 14:18:56 +00:00
|
|
|
#define STM32_HAS_SPI2 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI2_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI2_I2S_FULLDUPLEX FALSE
|
2013-10-02 10:03:05 +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)
|
|
|
|
|
2013-10-03 14:18:56 +00:00
|
|
|
#define STM32_HAS_SPI3 TRUE
|
2015-11-09 10:46:27 +00:00
|
|
|
#define STM32_SPI3_SUPPORTS_I2S TRUE
|
|
|
|
#define STM32_SPI3_I2S_FULLDUPLEX FALSE
|
2013-10-02 10:03:05 +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-12-03 15:17:11 +00:00
|
|
|
#define STM32_HAS_SPI4 FALSE
|
|
|
|
#define STM32_HAS_SPI5 FALSE
|
|
|
|
#define STM32_HAS_SPI6 FALSE
|
|
|
|
|
2013-10-02 10:03:05 +00:00
|
|
|
/* TIM attributes.*/
|
|
|
|
#define STM32_TIM_MAX_CHANNELS 4
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM1 TRUE
|
|
|
|
#define STM32_TIM1_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM1_CHANNELS 4
|
|
|
|
|
|
|
|
#define STM32_HAS_TIM2 TRUE
|
2015-07-04 07:11:19 +00:00
|
|
|
#define STM32_TIM2_IS_32BITS FALSE
|
2013-10-02 10:03:05 +00:00
|
|
|
#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_TIM5 TRUE
|
|
|
|
#define STM32_TIM5_IS_32BITS FALSE
|
|
|
|
#define STM32_TIM5_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 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_TIM15 FALSE
|
|
|
|
#define STM32_HAS_TIM16 FALSE
|
|
|
|
#define STM32_HAS_TIM17 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-10-02 10:03:05 +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-08-02 14:52:05 +00:00
|
|
|
#define STM32_HAS_UART7 FALSE
|
|
|
|
#define STM32_HAS_UART8 FALSE
|
2015-11-28 10:55:48 +00:00
|
|
|
#define STM32_HAS_LPUART1 FALSE
|
2013-10-02 10:03:05 +00:00
|
|
|
|
|
|
|
/* USB attributes.*/
|
|
|
|
#define STM32_HAS_USB FALSE
|
|
|
|
#define STM32_HAS_OTG1 TRUE
|
|
|
|
#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 FALSE
|
|
|
|
|
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 FALSE
|
2013-10-02 10:03:05 +00:00
|
|
|
/** @} */
|
|
|
|
#endif /* defined(STM32F10X_CL) */
|
|
|
|
|
|
|
|
#endif /* _STM32_REGISTRY_H_ */
|
|
|
|
|
|
|
|
/** @} */
|