sram2  2.0.0.0
Main Page

SRAM 2 click

SRAM 2 Click is based on ANV32A62A SRAM memory from Anvo-Systems Dresden. It's a 64Kb serial SRAM with a non-volatile SONOS storage element included with each memory cell, organized as 8k words of 8 bits each.

click Product page


Click library

  • Author : MikroE Team
  • Date : Jul 2020.
  • Type : I2C type

Software Support

We provide a library for the Sram2 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 form compilers IDE(recommended way), or downloaded from our LibStock, or found on mikroE github account.

Library Description

This library contains API for Sram2 Click driver.

Standard key functions :

  • Config Object Initialization function.

    void sram2_cfg_setup ( sram2_cfg_t *cfg );

  • Initialization function.

    SRAM2_RETVAL sram2_init ( sram2_t *ctx, sram2_cfg_t *cfg );

Example key functions :

Examples Description

This demo application writes and reads from memory.

The demo application is composed of two sections :

Application Init

Initializes driver init.

void application_init ( void )
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, "---- Application Init ----" );
// Click initialization.
sram2_cfg_setup( &cfg );
SRAM2_MAP_MIKROBUS( cfg, MIKROBUS_1 );
sram2_init( &sram2, &cfg );
}

Application Task

Writes and then reads data from memory.

void application_task ( void )
{
uint8_t cnt;
log_printf( &logger, ">> Write data [ MikroE ] to memory. \r\n" );
for ( cnt = 0; cnt < 8; cnt++ )
{
sram2_generic_write( &sram2, memory_addr + cnt, message_data[ cnt ] );
}
Delay_ms( 1000 );
log_printf( &logger, ">> Read data from memory. Data : " );
for ( cnt = 0; cnt < 8; cnt++ )
{
sram2_generic_read( &sram2, memory_addr + cnt, rx_data );
log_printf( &logger, " %c ", rx_data );
Delay_100ms( );
}
log_printf( &logger, " \r\n" );
log_printf( &logger, "-------------------------------- \r\n" );
Delay_ms( 2000 );
}

The full application code, and ready to use projects can be installed directly form compilers IDE(recommneded) or found on LibStock page or mikroE GitHub accaunt.

Other mikroE Libraries used in the example:

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.Sram2

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. The terminal available in all Mikroelektronika compilers, or any other terminal application of your choice, can be used to read the message.


SRAM2_MAP_MIKROBUS
#define SRAM2_MAP_MIKROBUS(cfg, mikrobus)
Definition: sram2.h:52
SRAM2_WR_DISABLE
#define SRAM2_WR_DISABLE
Definition: sram2.h:73
sram2_cfg_t
Click configuration structure definition.
Definition: sram2.h:115
sram2_init
SRAM2_RETVAL sram2_init(sram2_t *ctx, sram2_cfg_t *cfg)
Initialization function.
application_task
void application_task(void)
Definition: main.c:63
sram2_generic_write
void sram2_generic_write(sram2_t *ctx, uint16_t reg, uint8_t wr_data)
Generic write function.
SRAM2_WR_ENABLE
#define SRAM2_WR_ENABLE
Definition: sram2.h:72
sram2_generic_read
void sram2_generic_read(sram2_t *ctx, uint16_t reg, uint8_t *rx_data)
Generic read function.
sram2_cfg_setup
void sram2_cfg_setup(sram2_cfg_t *cfg)
Config Object Initialization function.
sram2_write_protect
void sram2_write_protect(sram2_t *ctx, uint8_t state)
Set PWM pin for write protection.
application_init
void application_init(void)
Definition: main.c:36