AceUtils  0.6.0
Useful Arduino utilties which are too small as separate libraries, but complex enough to be shared among multiple projects, and often have external dependencies to other libraries.
BufferedEEPROMClass.cpp
1 /*
2  Copyright (c) 2021 Brian T. Park.
3 
4  BufferedEEPROMClass.cpp - Buffered EEPROM emulation for STM32duino. Based on
5  the API from EEPROM.h from the ESP8266 Arduino Core.
6 */
7 
8 #include "BufferedEEPROMClass.h"
9 
10 #if defined(ARDUINO_ARCH_STM32)
11 
12 #if !defined(NO_GLOBAL_INSTANCES) && !defined(NO_GLOBAL_EEPROM)
13 BufferedEEPROMClass BufferedEEPROM;
14 #endif
15 
16 #endif // defined(ARDUINO_ARCH_STM32)