STM32: Support for the LeafLabs Maple and Maple Mini boards. From Librae

This commit is contained in:
Gregory Nutt 2013-09-13 12:45:33 -06:00
parent e31f62e1b5
commit 64825db9c2
2 changed files with 10 additions and 1 deletions

View File

@ -255,6 +255,13 @@ config ARCH_CHIP_STM32F103C8
select STM32_PERFORMANCELINE
select STM32_MEDIUMDENSITY
config ARCH_CHIP_STM32F103RBT6
bool "STM32F103RBT6"
select ARCH_CORTEXM3
select STM32_STM32F10XX
select STM32_PERFORMANCELINE
select STM32_MEDIUMDENSITY
config ARCH_CHIP_STM32F103RET6
bool "STM32F103RET6"
select ARCH_CORTEXM3

View File

@ -70,7 +70,9 @@
# include "chip/stm32f100_pinmap.h"
/* STM32 F103 Low / Medium Density Family */
# elif defined(CONFIG_ARCH_CHIP_STM32F103C4) || defined(CONFIG_ARCH_CHIP_STM32F103C8)
# elif defined(CONFIG_ARCH_CHIP_STM32F103C4) || \
defined(CONFIG_ARCH_CHIP_STM32F103C8) || \
defined(CONFIG_ARCH_CHIP_STM32F103RBT6)
# include "chip/stm32f103c_pinmap.h"
/* STM32 F103 High Density Family */