flash6 2.0.0.0
Main Page

Flash 6 click

The Flash 6 Click based on W25Q128JV (128M-bit) flash memory from Winbond provides a storage solution for systems with limited space, pins and power.

click Product page


Click library

  • Author : MikroE Team
  • Date : Feb 2020.
  • Type : SPI type

Software Support

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

Standard key functions :

  • Config Object Initialization function.

    ‍void flash6_cfg_setup ( flash6_cfg_t *cfg );

    - Initialization function.

    ‍FLASH6_RETVAL flash6_init ( flash6_t *ctx, flash6_cfg_t *cfg );

    Example key functions :

‍This application writes in memory and reads from memory.

The demo application is composed of two sections :

Application Init

‍Initializes driver, resets device and tests communication.

void application_init ( void )
{
log_cfg_t log_cfg;
uint8_t manufacture_id;
uint8_t device_id;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, "---- Application Init ----" );
// Click initialization.
FLASH6_MAP_MIKROBUS( cfg, MIKROBUS_1 );
flash6_init( &flash6, &cfg );
Delay_ms ( 100 );
flash6_get_manufacture_device_id( &flash6, &manufacture_id, &device_id );
log_printf( &logger, "\r\n ------> MANUFACTURE ID: 0x%x \r\n", manufacture_id );
log_printf( &logger, " ------> DEVICE ID: 0x%x \r\n \r\n", device_id );
Delay_ms ( 1000 );
}
#define FLASH6_MAP_MIKROBUS(cfg, mikrobus)
Definition flash6.h:68
uint8_t flash6_get_manufacture_device_id(flash6_t *ctx, uint8_t *manufacture_id, uint8_t *device_id)
Funcion for checking manufacture and device id.
void flash6_software_reset(flash6_t *ctx)
Function for reseting device.
FLASH6_RETVAL flash6_init(flash6_t *ctx, flash6_cfg_t *cfg)
Initialization function.
void flash6_cfg_setup(flash6_cfg_t *cfg)
Config Object Initialization function.
void application_init(void)
Definition main.c:35
Click configuration structure definition.
Definition flash6.h:165

Application Task

‍Clears the memory sector, writes "MikroE" to device memory and then reads it and sends it to log every 2 sec.

void application_task ( void )
{
uint32_t start_addr;
char read_buff[ 50 ];
uint8_t cnt;
start_addr = 0x002000;
log_printf( &logger, " ---> Erase sector \r\n" );
Delay_ms ( 500 );
log_printf( &logger, " ---> Write in memory ... \r\n" );
flash6_write_memory_data( &flash6, start_addr, &write_buf[ 0 ], 9 );
log_printf( &logger, " ---> Read from memory \r\n" );
flash6_read_memory_data( &flash6, start_addr, read_buff, 9 );
log_printf( &logger, "---->>>> " );
log_printf( &logger, "%s ", read_buff );
Delay_ms ( 100 );
log_printf( &logger, "----------------------------------\r\n" );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
}
#define FLASH6_CMD_SECTOR_ERASE_4KB
Definition flash6.h:99
void flash6_erase_memory_segment(flash6_t *ctx, uint8_t segment, uint32_t start_addr)
Function for eraseing segment.
void flash6_write_memory_data(flash6_t *ctx, uint32_t addr, uint8_t *data_buf, uint16_t buf_size)
Function used for writing in memory.
void flash6_read_memory_data(flash6_t *ctx, uint32_t addr, uint8_t *data_buf, uint16_t buf_size)
Function used for reading from memory.
void application_task(void)
Definition main.c:71

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

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.