From a858c980c40aa30c845e89d4ba866201abed2f6d Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Sat, 30 May 2020 18:59:36 +0200 Subject: [PATCH] cpu/stm32: fix remaining occurence of stm32f1 cpu family --- cpu/stm32/Makefile.features | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/stm32/Makefile.features b/cpu/stm32/Makefile.features index bccfeddd97..2362680238 100644 --- a/cpu/stm32/Makefile.features +++ b/cpu/stm32/Makefile.features @@ -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