STM32: Add configuration support fort he STM32F103RC. From Kosma Moczek

This commit is contained in:
Gregory Nutt 2014-06-30 08:16:17 -06:00
parent ed02593af7
commit 3010eddf11
3 changed files with 10 additions and 1 deletions

View File

@ -685,7 +685,8 @@
* differ only in the available FLASH and SRAM.
*/
#elif defined(CONFIG_ARCH_CHIP_STM32F103RD) || defined(CONFIG_ARCH_CHIP_STM32F103RE)
#elif defined(CONFIG_ARCH_CHIP_STM32F103RC) || defined(CONFIG_ARCH_CHIP_STM32F103RD) || \
defined(CONFIG_ARCH_CHIP_STM32F103RE)
# undef CONFIG_STM32_STM32L15XX /* STM32L151xx and STM32L152xx family */
# undef CONFIG_STM32_ENERGYLITE /* STM32L EnergyLite family */
# define CONFIG_STM32_STM32F10XX 1 /* STM32F10xxx family */

View File

@ -300,6 +300,13 @@ config ARCH_CHIP_STM32F103RB
select STM32_PERFORMANCELINE
select STM32_MEDIUMDENSITY
config ARCH_CHIP_STM32F103RC
bool "STM32F103RC"
select ARCH_CORTEXM3
select STM32_STM32F10XX
select STM32_PERFORMANCELINE
select STM32_HIGHDENSITY
config ARCH_CHIP_STM32F103RD
bool "STM32F103RD"
select ARCH_CORTEXM3

View File

@ -81,6 +81,7 @@
*/
# elif defined(CONFIG_ARCH_CHIP_STM32F103RB) || \
defined(CONFIG_ARCH_CHIP_STM32F103RC) || \
defined(CONFIG_ARCH_CHIP_STM32F103RD) || \
defined(CONFIG_ARCH_CHIP_STM32F103RE)
# include "chip/stm32f103r_pinmap.h"