soc: Add support for STM32F072X8
Adds support for the STM32F072X8 SOC, which is a variant of the existing STM32F072XB with less flash. Signed-off-by: Jonas Otto <jonas@jonasotto.com>
This commit is contained in:
parent
b3a3a8b3a2
commit
2baac8e769
3 changed files with 26 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
# Copyright (c) 2017 BayLibre, SAS
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if SOC_STM32F072XB
|
||||
if SOC_STM32F072X8 || SOC_STM32F072XB
|
||||
|
||||
config SOC
|
||||
default "stm32f072xb"
|
||||
|
@ -11,4 +11,4 @@ config SOC
|
|||
config NUM_IRQS
|
||||
default 32
|
||||
|
||||
endif # SOC_STM32F072XB
|
||||
endif # SOC_STM32F072X8 || SOC_STM32F072XB
|
|
@ -31,6 +31,9 @@ config SOC_STM32F051X8
|
|||
config SOC_STM32F070XB
|
||||
bool "STM32F070XB"
|
||||
|
||||
config SOC_STM32F072X8
|
||||
bool "STM32F072X8"
|
||||
|
||||
config SOC_STM32F072XB
|
||||
bool "STM32F072XB"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue