Skip to content

Commit

Permalink
Fix EEPROM include on STM32 (#151)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
rueckix committed Oct 17, 2021
1 parent 57b1950 commit 616599c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stm32_platform.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "stm32_platform.h"

#ifdef ARDUINO_ARCH_STM32
#include <stm32_eeprom.h>
#include <EEPROM.h>
#include "knx/bits.h"

Stm32Platform::Stm32Platform()
Expand Down

0 comments on commit 616599c

Please sign in to comment.