1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/stm32: fix remaining occurence of stm32f1 cpu family

This commit is contained in:
Alexandre Abadie 2020-05-30 18:59:36 +02:00
parent 2448b26a8b
commit a858c980c4
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -18,7 +18,7 @@ ifneq (,$(filter $(CPU_FAM),l0 l1))
FEATURES_PROVIDED += periph_eeprom
endif
ifeq (stm32f1,$(CPU_FAM))
ifeq (f1,$(CPU_FAM))
FEATURES_CONFLICT += periph_rtc:periph_rtt
FEATURES_CONFLICT_MSG += "On the STM32F1, the RTC and RTT map to the same hardware peripheral."
endif