(still working -- compiles and runs though)

partial-rewrite
Ben Blazak 2013-09-13 09:28:11 -07:00
parent 7c44123178
commit c7350e1435
2 changed files with 4 additions and 17 deletions

View File

@ -42,12 +42,6 @@
// ----------------------------------------------------------------------------
#ifndef OPT__EEPROM_MACRO__EEPROM_SIZE
#error "OPT__EEPROM_MACRO__EEPROM_SIZE not defined"
#endif
// ----------------------------------------------------------------------------
uint8_t eeprom__read (void * from);
uint8_t eeprom__write (void * to, uint8_t data);
uint8_t eeprom__fill (void * to, uint8_t data, uint8_t length);
@ -67,17 +61,6 @@ uint8_t eeprom__block_read (void * to, void * from, uint8_t length);
// ============================================================================
// ----------------------------------------------------------------------------
// macros ---------------------------------------------------------------------
// ----------------------------------------------------------------------------
// === OPT__EEPROM_MACRO__EEPROM_SIZE ===
/** macros/OPT__EEPROM_MACRO__EEPROM_SIZE/description
* The total size (in bytes) of the EEPROM memory to be allocated by the
* implementing file
*/
// ----------------------------------------------------------------------------
// functions ------------------------------------------------------------------
// ----------------------------------------------------------------------------

View File

@ -151,6 +151,7 @@ typedef struct {
} key_action_t;
// TODO: rewriting (yet again) - stopped here
#if 0
// ----------------------------------------------------------------------------
// variables in EEMEM ---------------------------------------------------------
@ -383,8 +384,10 @@ static void compress(void) { return;
// ----------------------------------------------------------------------------
// public functions -----------------------------------------------------------
#endif // 0
uint8_t eeprom_macro__init(void) { return 0;
}
#if 0
uint8_t eeprom_macro__record_init(void) { return 0;
}
@ -409,4 +412,5 @@ void eeprom_macro__clear(eeprom_macro__uid_t index) { return;
void eeprom_macro__clear_all(void) { return;
}
#endif // 0