From 616599cf8b6be2fca0fe062e18903a26483f47f4 Mon Sep 17 00:00:00 2001 From: rueckix <39458989+rueckix@users.noreply.github.com> Date: Sun, 17 Oct 2021 18:19:45 +0200 Subject: [PATCH] Fix EEPROM include on STM32 (#151) The structure of the stm32 arduino core changed (https://github.com/stm32duino/Arduino_Core_STM32/tree/main/libraries/EEPROM/src). stm32_eeprom.h was moved to a subfolder. Instead, we can now include (and potentially use later), the `EEPROM.h` header. --- src/stm32_platform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stm32_platform.cpp b/src/stm32_platform.cpp index 4e702317..8fbfaa33 100644 --- a/src/stm32_platform.cpp +++ b/src/stm32_platform.cpp @@ -1,7 +1,7 @@ #include "stm32_platform.h" #ifdef ARDUINO_ARCH_STM32 -#include +#include #include "knx/bits.h" Stm32Platform::Stm32Platform()