nvsram2 2.0.0.0
Main Page

nvSRAM 2 click

nvSRAM 2 Click is a compact add-on board that contains the most reliable nonvolatile memory. This board features the CY14B101Q, a 1Mbit nvSRAM organized as 128K words of 8 bits each with a nonvolatile element in each memory cell from Cypress Semiconductor. The embedded nonvolatile elements incorporate the QuantumTrap technology and provide highly reliable nonvolatile storage of data. Data transfer, initiated by the user through SPI commands, from SRAM to the nonvolatile elements takes place automatically at Power-Down. On the other hand, during the Power-Up, data is restored to the SRAM from the nonvolatile memory. This Click boardâ„¢ is suitable for all applications that require fast access and high reliability of stored data, and unlimited endurance.

click Product page


Click library

  • Author : Jelena Milosavljevic
  • Date : Jul 2021.
  • Type : SPI type

Software Support

We provide a library for the nvSRAM2 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 nvSRAM2 Click driver.

Standard key functions :

Example key functions :

  • nvsram2_hold The function enables hold operation by setting the state of the HOLD ( PWM ) pin depending on the function argument.
    void nvsram2_hold ( nvsram2_t *ctx, uint8_t en_hold );
    void nvsram2_hold(nvsram2_t *ctx, uint8_t en_hold)
    nvSRAM 2 data enable hold operation function.
  • nvsram2_set_cmd The function sends desired command to the CY14B101Q2A memory on nvSRAM 2 click board.
    void nvsram2_set_cmd ( nvsram2_t *ctx, uint8_t cmd );
    void nvsram2_set_cmd(nvsram2_t *ctx, uint8_t cmd)
    nvSRAM 2 send command function.
  • nvsram2_read_id The function performs the device ID read of the CY14B101Q2A memory on nvSRAM 2 click board.
    uint32_t nvsram2_read_id ( nvsram2_t *ctx );
    uint32_t nvsram2_read_id(nvsram2_t *ctx)
    nvSRAM 2 read ID function.

Example Description

‍This is an example using nvSRAM 2 click based on CY14B101Q which is combines a 1-Mbit nvSRAM with a nonvolatile element in each memory cell with serial SPI interface. The memory is organized as 128K words of 8 bits each.

The demo application is composed of two sections :

Application Init

‍Initializes SPI and UART LOG, sets CS and PWM pins as outputs. Disables hold, sets write enable latch, targets the memory address at 12345 ( 0x00003039 ) for burst write starting point and writes data which is also displayed on the log.

void application_init ( void ) {
log_cfg_t log_cfg;
nvsram2_cfg_t nvsram2_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
Delay_ms ( 100 );
log_info( &logger, " Application Init " );
// Click initialization.
nvsram2_cfg_setup( &nvsram2_cfg );
NVSRAM2_MAP_MIKROBUS( nvsram2_cfg, MIKROBUS_1 );
err_t init_flag = nvsram2_init( &nvsram2, &nvsram2_cfg );
if ( SPI_MASTER_ERROR == init_flag ) {
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
nvsram2_default_cfg ( &nvsram2 );
log_info( &logger, " Application Task " );
memory_addr = 12345;
nvsram2_burst_write( &nvsram2, memory_addr, demo_data, 9 );
log_printf( &logger, "-----------------------\r\n" );
log_printf( &logger, "-> Write data : %s \r\n", demo_data );
Delay_ms ( 100 );
}
#define NVSRAM2_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition nvsram2.h:143
void nvsram2_burst_write(nvsram2_t *ctx, uint32_t mem_addr, uint8_t *p_tx_data, uint8_t n_bytes)
nvSRAM 2 burst write function.
void application_init(void)
Definition main.c:34

Application Task

‍This is an example that demonstrates the use of the nvSRAM 2 click board. In this example, the data is read from the targeted memory address. The results are being sent to the Usart Terminal. This task repeats every 5 sec.

void application_task ( void ) {
nvsram2_burst_read( &nvsram2, memory_addr, rx_data, 9 );
log_printf( &logger, "-----------------------\r\n" );
log_printf( &logger, "<- Read data : %s \r\n", rx_data );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
}
void nvsram2_burst_read(nvsram2_t *ctx, uint32_t mem_addr, uint8_t *p_rx_data, uint8_t n_bytes)
nvSRAM 2 burst read function.
void application_task(void)
Definition main.c:76

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.nvSRAM2

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.