From 6cbec746b8eaf69a3424efca9cb7aebfc33ab9b3 Mon Sep 17 00:00:00 2001 From: rueckix <39458989+rueckix@users.noreply.github.com> Date: Sun, 17 Oct 2021 12:39:14 +0200 Subject: [PATCH] Fix EEPROM include on STM32 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 4e70231..8fbfaa3 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()