Handle bool defaults on emulated eeprom platform platforms (fixes #5)

This commit is contained in:
Filip Ayazi 2023-03-08 23:51:22 +00:00
parent 13e9a2c598
commit 51b5b670e6
6 changed files with 24 additions and 5 deletions

View file

@ -1,4 +1,5 @@
#ifndef dummyEEPROM_h
#define dummyEEPROM_h
#include <stdint.h>
struct EEPROMClass
@ -21,4 +22,5 @@ struct EEPROMClass
}
};
static EEPROMClass EEPROM;
static EEPROMClass EEPROM;
#endif