All Projects → hepingood → w25qxx

hepingood / w25qxx

Licence: MIT license
w25qxx full function driver

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to w25qxx

esp-idf-w25q64
SPI Flash Memory W25Q64 Access Library for esp-idf
Stars: ✭ 12 (-97.27%)
Mutual labels:  w25q80, w25q16, w25q32, w25q64, w25q128
Raspberry-W25Q64
SPI Flash Memory W25Q64 Access Library for RaspberryPi
Stars: ✭ 37 (-91.59%)
Mutual labels:  w25q80, w25q16, w25q32, w25q64, w25q128
uvis25
uvis25 full function driver
Stars: ✭ 13 (-97.05%)
Mutual labels:  spi, mcu
IOsonata
IOsonata multi-platform multi-architecture power & performance optimized software library for fast and easy IoT MCU firmware development. Object Oriented design, no board package to define, just pure plug & play any boards
Stars: ✭ 40 (-90.91%)
Mutual labels:  spi, mcu
Stm32 Bootloader
Customizable Bootloader for STM32 microcontrollers. This example demonstrates how to perform in-application-programming of a firmware located on an external SD card with FAT32 file system.
Stars: ✭ 541 (+22.95%)
Mutual labels:  flash, mcu
ssd1351
ssd1351 full function driver
Stars: ✭ 34 (-92.27%)
Mutual labels:  spi, mcu
pcf8574
pcf8574 full function driver
Stars: ✭ 106 (-75.91%)
Mutual labels:  mcu, full-function
Nf Interpreter
⚙️ nanoFramework Interpreter, CLR, HAL, PAL and reference target boards
Stars: ✭ 168 (-61.82%)
Mutual labels:  spi, mcu
max7219
MAX7219 full function driver for general MCU and Linux.
Stars: ✭ 86 (-80.45%)
Mutual labels:  spi, mcu
awesome-embedded-swift
⚡️🛠🧰 A curated list for Embedded and Low-Level development in the Swift programming language.
Stars: ✭ 57 (-87.05%)
Mutual labels:  spi, mcu
adxl345
ADXL345 full function driver for general MCU and Linux.
Stars: ✭ 170 (-61.36%)
Mutual labels:  spi, mcu
Can library
Multiplatform Arduino library for supporting the native CAN controller on Due (SAM3X) and Teensy 3.1 (K2X) as well as MCP2515 through SPI
Stars: ✭ 81 (-81.59%)
Mutual labels:  spi, mcu
amg8833
amg8833 full function driver
Stars: ✭ 78 (-82.27%)
Mutual labels:  mcu, full-function
Spiffs
Wear-leveled SPI flash file system for embedded devices
Stars: ✭ 1,105 (+151.14%)
Mutual labels:  flash, spi
max30102
max30102 full function driver
Stars: ✭ 88 (-80%)
Mutual labels:  mcu, full-function
bmp388
bmp388 full function driver
Stars: ✭ 14 (-96.82%)
Mutual labels:  spi, mcu
sgp30
sgp30 full function driver
Stars: ✭ 24 (-94.55%)
Mutual labels:  mcu
pcf8591
pcf8591 full function driver
Stars: ✭ 32 (-92.73%)
Mutual labels:  mcu
kurento-group-call-node
kurento group call server
Stars: ✭ 49 (-88.86%)
Mutual labels:  mcu
pigweed
pigweed.dev
Stars: ✭ 134 (-69.55%)
Mutual labels:  mcu

English | 简体中文 | 繁體中文 | 日本語 | Deutsch | 한국어

LibDriver W25QXX

MISRA API License

The W25Q25XX Serial Flash memory provides a storage solution for systems with limited space, pins and power. The 25Q series offers flexibility and performance well beyond ordinary Serial Flash devices. They are ideal for code shadowing to RAM, executing code directly from Dual/Quad SPI (XIP) and storing voice, text and data. The device operates on a single 2.7V to 3.6V power supply with current consumption as low as 4mA active and 1μA for power-down. All devices are offered in space-saving packages.

LibDriver W25QXX is the full function driver of W25QXX launched by LibDriver.It provides functions of flash reading,flash writing, etc. LibDriver is MISRA compliant.

Table of Contents

Instruction

/src includes LibDriver W25QXX source files.

/interface includes LibDriver W25QXX SPI or QSPI platform independent template.

/test includes LibDriver W25QXX driver test code and this code can test the chip necessary function simply.

/example includes LibDriver W25QXX sample code.

/doc includes LibDriver W25QXX offline document.

/datasheet includes W25QXX datasheet.

/project includes the common Linux and MCU development board sample code. All projects use the shell script to debug the driver and the detail instruction can be found in each project's README.md.

Install

Reference /interface SPI or QSPI platform independent template and finish your platform SPI or QSPI driver.

Add /src, /interface and /example to your project.

Usage

example basic

#include "driver_w25qxx_basic.h"

uint8_t res;
uint8_t manufacturer;
uint8_t device_id;
uint8_t data[8];

res = w25qxx_basic_init(W25Q128, W25QXX_INTERFACE_SPI, W25QXX_BOOL_TRUE);
if (res != 0)
{
    return 1;
}

...
    
res = w25qxx_basic_get_id((uint8_t *)&manufacturer, (uint8_t *)&device_id);
if (res != 0)
{
    (void)w25qxx_basic_deinit();
    
    return 1;
}
w25qxx_interface_debug_print("w25qxx: manufacturer is 0x%02X device id is 0x%02X.\n", manufacturer, device_id);
    
...    
    
res = w25qxx_basic_write(0x00000000, (uint8_t *)data, 8);
if (res != 0)
{
    (void)w25qxx_basic_deinit();
    
    return 1;
}

...

res = w25qxx_basic_read(0x00000000, (uint8_t *)data, 8);
if (res != 0)
{
    (void)w25qxx_basic_deinit();
    
    return 1;
}

...
    
(void)w25qxx_basic_deinit();

return 0;

example advance

#include "driver_w25qxx_advance.h"

uint8_t res;
uint8_t manufacturer;
uint8_t device_id;
uint8_t data[8];

res = w25qxx_advance_init(W25Q128, W25QXX_INTERFACE_SPI, W25QXX_BOOL_TRUE);
if (res != 0)
{
    return 1;
}

...
    
res = w25qxx_advance_get_id((uint8_t *)&manufacturer, (uint8_t *)&device_id);
if (res != 0)
{
    (void)w25qxx_advance_deinit();
    
    return 1;
}
w25qxx_interface_debug_print("w25qxx: manufacturer is 0x%02X device id is 0x%02X.\n", manufacturer, device_id);
    
...    
    
res = w25qxx_advance_write(0x00000000, (uint8_t *)data, 8);
if (res != 0)
{
    (void)w25qxx_advance_deinit();
    
    return 1;
}

...

res = w25qxx_advance_read(0x00000000, (uint8_t *)data, 8);
if (res != 0)
{
    (void)w25qxx_advance_deinit();
    
    return 1;
}

...
    
(void)w25qxx_advance_deinit();

return 0;

Document

Online documents: https://www.libdriver.com/docs/w25qxx/index.html

Offline documents: /doc/html/index.html

Contributing

Please sent an e-mail to [email protected]

License

Copyright (c) 2015 - present LibDriver All rights reserved

The MIT License (MIT)

Permission is hereby granted, free of charge, to any person obtaining a copy

of this software and associated documentation files (the "Software"), to deal

in the Software without restriction, including without limitation the rights

to use, copy, modify, merge, publish, distribute, sublicense, and/or sell

copies of the Software, and to permit persons to whom the Software is

furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all

copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR

IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,

FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE

AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER

LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,

OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE

SOFTWARE.

Contact Us

Please sent an e-mail to [email protected]

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].