|
void | eeprom_init () |
|
void | eeprom_adjust_bed_reset () |
|
void | eeprom_default_sheet_name (uint8_t index, SheetName &sheetName) |
| Get default sheet name for index. More...
|
|
int8_t | eeprom_next_initialized_sheet (int8_t sheet) |
| Get next initialized sheet. More...
|
|
void | eeprom_switch_to_next_sheet () |
|
bool | eeprom_is_sheet_initialized (uint8_t sheet_num) |
|
bool | eeprom_is_initialized_block (const void *__p, size_t __n) |
|
void | eeprom_update_block_P (const void *__src, void *__dst, size_t __n) |
|
void | eeprom_toggle (uint8_t *__p) |
|
void | eeprom_increment_byte (uint8_t *__p) |
|
void | eeprom_increment_word (uint16_t *__p) |
|
void | eeprom_increment_dword (uint32_t *__p) |
|
void | eeprom_add_byte (uint8_t *__p, uint8_t add) |
|
void | eeprom_add_word (uint16_t *__p, uint16_t add) |
|
void | eeprom_add_dword (uint32_t *__p, uint32_t add) |
|
uint8_t | eeprom_init_default_byte (uint8_t *__p, uint8_t def) |
|
uint16_t | eeprom_init_default_word (uint16_t *__p, uint16_t def) |
|
uint32_t | eeprom_init_default_dword (uint32_t *__p, uint32_t def) |
|
void | eeprom_init_default_float (float *__p, float def) |
|
void | eeprom_init_default_block (void *__p, size_t __n, const void *def) |
|
void | eeprom_init_default_block_P (void *__p, size_t __n, const void *def) |
|
void | eeprom_write_byte_notify (uint8_t *dst, uint8_t value) |
| Updates eeprom byte and notifies the changed eeprom address (just the address!) onto the serial line.
|
|
void | eeprom_update_byte_notify (uint8_t *dst, uint8_t value) |
|
void | eeprom_write_word_notify (uint16_t *dst, uint16_t value) |
|
void | eeprom_update_word_notify (uint16_t *dst, uint16_t value) |
|
void | eeprom_write_dword_notify (uint32_t *dst, uint32_t value) |
|
void | eeprom_update_dword_notify (uint32_t *dst, uint32_t value) |
|
void | eeprom_write_float_notify (float *dst, float value) |
|
void | eeprom_update_float_notify (float *dst, float value) |
|
void | eeprom_write_block_notify (const void *__src, void *__dst, size_t __size) |
|
void | eeprom_update_block_notify (const void *__src, void *__dst, size_t __size) |
|
void | eeprom_write_byte_notify (uint8_t *dst, uint8_t value, bool active=true) |
|
void | eeprom_update_byte_notify (uint8_t *dst, uint8_t value, bool active=true) |
|
void | eeprom_write_word_notify (uint16_t *dst, uint16_t value, bool active=true) |
|
void | eeprom_update_word_notify (uint16_t *dst, uint16_t value, bool active=true) |
|
void | eeprom_write_dword_notify (uint32_t *dst, uint32_t value, bool active=true) |
|
void | eeprom_update_dword_notify (uint32_t *dst, uint32_t value, bool active=true) |
|
void | eeprom_write_float_notify (float *dst, float value, bool active=true) |
|
void | eeprom_update_float_notify (float *dst, float value, bool active=true) |
|
void | eeprom_write_block_notify (const void *__src, void *__dst, size_t __size, bool active=true) |
|
void | eeprom_update_block_notify (const void *__src, void *__dst, size_t __size, bool active=true) |
|