arch/arm/Kconfig: Add option for STM32F0
This commit is contained in:
parent
2158c2d582
commit
879273f63e
@ -232,6 +232,13 @@ config ARCH_CHIP_STM32
|
|||||||
---help---
|
---help---
|
||||||
STMicro STM32 architectures (ARM Cortex-M3/4).
|
STMicro STM32 architectures (ARM Cortex-M3/4).
|
||||||
|
|
||||||
|
config ARCH_CHIP_STM32F0
|
||||||
|
bool "STMicro STM32 F0"
|
||||||
|
select ARCH_CORTEXM0
|
||||||
|
select ARCH_HAVE_CMNVECTOR
|
||||||
|
---help---
|
||||||
|
STMicro STM32 architectures (ARM Cortex-M0).
|
||||||
|
|
||||||
config ARCH_CHIP_STM32F7
|
config ARCH_CHIP_STM32F7
|
||||||
bool "STMicro STM32 F7"
|
bool "STMicro STM32 F7"
|
||||||
select ARCH_HAVE_CMNVECTOR
|
select ARCH_HAVE_CMNVECTOR
|
||||||
@ -441,6 +448,7 @@ config ARCH_CHIP
|
|||||||
default "sam34" if ARCH_CHIP_SAM34
|
default "sam34" if ARCH_CHIP_SAM34
|
||||||
default "samv7" if ARCH_CHIP_SAMV7
|
default "samv7" if ARCH_CHIP_SAMV7
|
||||||
default "stm32" if ARCH_CHIP_STM32
|
default "stm32" if ARCH_CHIP_STM32
|
||||||
|
default "stm32f0" if ARCH_CHIP_STM32F0
|
||||||
default "stm32f7" if ARCH_CHIP_STM32F7
|
default "stm32f7" if ARCH_CHIP_STM32F7
|
||||||
default "stm32l4" if ARCH_CHIP_STM32L4
|
default "stm32l4" if ARCH_CHIP_STM32L4
|
||||||
default "str71x" if ARCH_CHIP_STR71X
|
default "str71x" if ARCH_CHIP_STR71X
|
||||||
@ -697,6 +705,9 @@ endif
|
|||||||
if ARCH_CHIP_STM32
|
if ARCH_CHIP_STM32
|
||||||
source arch/arm/src/stm32/Kconfig
|
source arch/arm/src/stm32/Kconfig
|
||||||
endif
|
endif
|
||||||
|
if ARCH_CHIP_STM32F0
|
||||||
|
source arch/arm/src/stm32f0/Kconfig
|
||||||
|
endif
|
||||||
if ARCH_CHIP_STM32F7
|
if ARCH_CHIP_STM32F7
|
||||||
source arch/arm/src/stm32f7/Kconfig
|
source arch/arm/src/stm32f7/Kconfig
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user