soc: arm: st_stm32 : Add stm32f303Xe version

Added stm32f303Xe based on the stm32f303Xc Kconfig

Signed-off-by: Paul M. Bendixen <paulbendixen@gmail.com>
This commit is contained in:
Paul M. Bendixen 2020-01-23 20:55:39 +01:00 committed by Johan Hedberg
commit 878faa9e5a
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,21 @@
# ST Microelectronics STM32F303XC MCU
# Copyright (c) 2020 Paul M. Bendixen
# SPDX-License-Identifier: Apache-2.0
if SOC_STM32F303XE
config SOC
default "stm32f303xe"
config NUM_IRQS
default 85
if GPIO_STM32
config GPIO_STM32_PORTF
default y
endif # GPIO_STM32
endif # SOC_STM32F303XE

View file

@ -14,6 +14,10 @@ config SOC_STM32F303XC
bool "STM32F303XC"
select CPU_HAS_ARM_MPU
config SOC_STM32F303XE
bool "STM32F303XE"
select CPU_HAS_ARM_MPU
config SOC_STM32F334X8
bool "STM32F334X8"