Loading...
Searching...
No Matches

Low-level EEPROM interface. More...

Detailed Description

Low-level EEPROM interface.

Files

file  eeprom.h
 Low-level eeprom driver interface.
 

Macros

#define EEPROM_CLEAR_BYTE   0x00
 Default value of the EEPROM clear byte.
 

Functions

uint8_t eeprom_read_byte (uint32_t pos)
 Read a byte at the given position in eeprom.
 
size_t eeprom_read (uint32_t pos, void *data, size_t len)
 Read len bytes from the given position.
 
void eeprom_write_byte (uint32_t pos, uint8_t data)
 Write a byte at the given position.
 
size_t eeprom_write (uint32_t pos, const void *data, size_t len)
 Write len bytes at the given position.
 
size_t eeprom_set (uint32_t pos, uint8_t val, size_t len)
 Set len bytes from the given position pos with value val.
 
size_t eeprom_clear (uint32_t pos, size_t len)
 Clear len bytes from the given position pos.
 
size_t eeprom_erase (void)
 Erase the whole EEPROM content.
 

Macro Definition Documentation

◆ EEPROM_CLEAR_BYTE

#define EEPROM_CLEAR_BYTE   0x00

Default value of the EEPROM clear byte.

Definition at line 41 of file eeprom.h.

Function Documentation

◆ eeprom_clear()

size_t eeprom_clear ( uint32_t  pos,
size_t  len 
)

Clear len bytes from the given position pos.

Clearing a byte in EEPROM simply consists in setting it to 0

Parameters
[in]posstart position in eeprom
[in]lenthe number of bytes to clear
Returns
the number of bytes cleared

◆ eeprom_erase()

size_t eeprom_erase ( void  )

Erase the whole EEPROM content.

Returns
the EEPROM_SIZE

◆ eeprom_read()

size_t eeprom_read ( uint32_t  pos,
void *  data,
size_t  len 
)

Read len bytes from the given position.

This function must be implemented by each CPU that provides an internal EEPROM.

Parameters
[in]posstart position in eeprom
[out]dataoutput memory location to write to
[in]lenthe number of bytes to read
Returns
the number of bytes read

◆ eeprom_read_byte()

uint8_t eeprom_read_byte ( uint32_t  pos)

Read a byte at the given position in eeprom.

Parameters
[in]posposition to read
Returns
the byte read

◆ eeprom_set()

size_t eeprom_set ( uint32_t  pos,
uint8_t  val,
size_t  len 
)

Set len bytes from the given position pos with value val.

Parameters
[in]posstart position in eeprom
[in]valthe value to set
[in]lenthe number of bytes to set
Returns
the number of bytes set

◆ eeprom_write()

size_t eeprom_write ( uint32_t  pos,
const void *  data,
size_t  len 
)

Write len bytes at the given position.

This function must be implemented by each CPU that provides an internal EEPROM.

Parameters
[in]posstart position in eeprom
[in]datainput memory location to read into
[in]lenthe number of bytes to read
Returns
the number of bytes written

◆ eeprom_write_byte()

void eeprom_write_byte ( uint32_t  pos,
uint8_t  data 
)

Write a byte at the given position.

Parameters
[in]posposition to write
[in]databyte address to write to