eeprom10 2.1.0.0
Main Page

EEPROM 10 click

‍EEPROM 10 Click is a compact add-on board that contains the highest-density memory solution. This board features the N24C32, a 32Kb I2C CMOS Serial EEPROM from ON Semiconductor. It is internally organized as 128 pages of 32 bytes each, with a 32-byte page write buffer and a fast write time of up to 4ms.

click Product page


Click library

  • Author : Stefan Ilic
  • Date : May 2023.
  • Type : I2C type

Software Support

We provide a library for the EEPROM 10 Click as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.

Package can be downloaded/installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.

Library Description

‍This library contains API for EEPROM 10 Click driver.

Standard key functions :

Example key functions :

  • eeprom10_write_enable EEPROM 10 write enable function.
    void eeprom10_write_enable(eeprom10_t *ctx)
    EEPROM 10 write enable function.
  • eeprom10_write_n_byte EEPROM 10 write desired number of data function.
    err_t eeprom10_write_n_byte ( eeprom10_t *ctx, uint16_t address, uint8_t *data_in, uint8_t len );
    err_t eeprom10_write_n_byte(eeprom10_t *ctx, uint16_t address, uint8_t *data_in, uint8_t len)
    EEPROM 10 write desired number of data function.
  • eeprom10_read_n_byte EEPROM 10 read desired number of data function.
    err_t eeprom10_read_n_byte ( eeprom10_t *ctx, uint16_t address, uint8_t *data_out, uint8_t len );
    err_t eeprom10_read_n_byte(eeprom10_t *ctx, uint16_t address, uint8_t *data_out, uint8_t len)
    EEPROM 10 read desired number of data function.

Example Description

‍This example demonstrates the use of EEPROM 10 click board by writing specified data to the memory and reading it back.

The demo application is composed of two sections :

Application Init

‍Initializes the driver and USB UART logging.

void application_init ( void )
{
log_cfg_t log_cfg;
eeprom10_cfg_t eeprom10_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
eeprom10_cfg_setup( &eeprom10_cfg );
EEPROM10_MAP_MIKROBUS( eeprom10_cfg, MIKROBUS_1 );
if ( I2C_MASTER_ERROR == eeprom10_init( &eeprom10, &eeprom10_cfg ) )
{
log_error( &logger, " Communication init." );
for ( ; ; );
}
eeprom10_write_enable( &eeprom10 );
log_info( &logger, " Application Task " );
}
#define EEPROM10_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition eeprom10.h:112
void application_init(void)
Definition main.c:34

Application Task

‍In this example, we write and then read data from EEPROM memory. Results are being sent to the Usart Terminal where you can track their changes. All data logs write on USB UART changes approximately every second.

void application_task ( void )
{
err_t error_flag = EEPROM10_OK;
error_flag = eeprom10_write_n_byte( &eeprom10, EEPROM10_TEST_ADDRESS, tx_data, 14 );
if ( EEPROM10_OK == error_flag )
{
log_printf( &logger, " Write %s data to 0x%.4X address \r\n", tx_data, ( uint16_t ) EEPROM10_TEST_ADDRESS );
}
else
{
log_error( &logger, " Write operation failed!!! " );
}
Delay_ms ( 100 );
error_flag = eeprom10_read_n_byte( &eeprom10, EEPROM10_TEST_ADDRESS, rx_data, 14 );
if ( EEPROM10_OK == error_flag )
{
log_printf( &logger, " Read %s from 0x%.4X address \r\n", rx_data, ( uint16_t ) EEPROM10_TEST_ADDRESS );
}
else
{
log_error( &logger, " Read operation failed!!! " );
}
Delay_ms ( 1000 );
}
@ EEPROM10_OK
Definition eeprom10.h:159
void application_task(void)
Definition main.c:66
#define EEPROM10_TEST_ADDRESS
Definition main.c:27

The full application code, and ready to use projects can be installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.

Other Mikroe Libraries used in the example:

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.EEPROM10

Additional notes and informations

Depending on the development board you are using, you may need USB UART click, USB UART 2 Click or RS232 Click to connect to your PC, for development systems with no UART to USB interface available on the board. UART terminal is available in all MikroElektronika compilers.