├── .gitignore ├── LICENSE ├── README.md ├── examples ├── RingBuffer │ └── RingBuffer.ino └── SimpleConfiguration │ └── SimpleConfiguration.ino ├── keywords.txt ├── library.properties └── src ├── EEPROMWearLevel.cpp ├── EEPROMWearLevel.h ├── avr └── EEPROMWearLevelAvr.cpp └── megaavr └── EEPROMWearLevelMegaavr.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRosenb/EEPROMWearLevel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRosenb/EEPROMWearLevel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRosenb/EEPROMWearLevel/HEAD/README.md -------------------------------------------------------------------------------- /examples/RingBuffer/RingBuffer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRosenb/EEPROMWearLevel/HEAD/examples/RingBuffer/RingBuffer.ino -------------------------------------------------------------------------------- /examples/SimpleConfiguration/SimpleConfiguration.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRosenb/EEPROMWearLevel/HEAD/examples/SimpleConfiguration/SimpleConfiguration.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRosenb/EEPROMWearLevel/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRosenb/EEPROMWearLevel/HEAD/library.properties -------------------------------------------------------------------------------- /src/EEPROMWearLevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRosenb/EEPROMWearLevel/HEAD/src/EEPROMWearLevel.cpp -------------------------------------------------------------------------------- /src/EEPROMWearLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRosenb/EEPROMWearLevel/HEAD/src/EEPROMWearLevel.h -------------------------------------------------------------------------------- /src/avr/EEPROMWearLevelAvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRosenb/EEPROMWearLevel/HEAD/src/avr/EEPROMWearLevelAvr.cpp -------------------------------------------------------------------------------- /src/megaavr/EEPROMWearLevelMegaavr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRosenb/EEPROMWearLevel/HEAD/src/megaavr/EEPROMWearLevelMegaavr.cpp --------------------------------------------------------------------------------