1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

cpu/stm32: set CPU_LINE for stm32mp157c

Set CPU_LINE variable according to informations extracted from
stm32_info.mk.

Signed-off-by: Gilles DOFFE <gilles.doffe@savoirfairelinux.com>
This commit is contained in:
Gilles DOFFE 2020-09-27 20:05:55 +02:00
parent 7b7a75c3ca
commit ec97eb8447

View File

@ -137,3 +137,10 @@ ifeq (L,$(STM32_TYPE))
endif
endif
endif
ifeq (MP,$(STM32_TYPE))
ifeq (157,$(STM32_MODEL))
ifeq (C,$(STM32_MODEL2))
CPU_LINE = STM32MP157Cxx
endif
endif
endif