Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
456 B

/*
EEPROM MODULE
*/
// XXX: with case insensitive filesystem, if named eeprom.h *could*
// be included as EEPROM.h and fail after including rotate library down below
#pragma once
#include <EEPROM_Rotate.h>
#include "espurna.h"
extern EEPROM_Rotate EEPROMr;
void eepromSectorsDebug();
void eepromRotate(bool value);
uint32_t eepromCurrent();
String eepromSectors();
void eepromBackup(uint32_t index);
void eepromCommit();
void eepromSetup();