2 unstable releases

0.2.0 Mar 25, 2020
0.1.0 May 24, 2019

#12 in #eeprom

Download history 148/week @ 2023-11-20 148/week @ 2023-11-27 108/week @ 2023-12-04 157/week @ 2023-12-11 91/week @ 2023-12-18 39/week @ 2023-12-25 69/week @ 2024-01-01 98/week @ 2024-01-08 129/week @ 2024-01-15 117/week @ 2024-01-22 164/week @ 2024-01-29 93/week @ 2024-02-05 50/week @ 2024-02-12 92/week @ 2024-02-19 119/week @ 2024-02-26 220/week @ 2024-03-04

487 downloads per month
Used in 3 crates

0BSD license

2MB
546 lines

Contains (Zip file, 400KB) dev-board/pcb/gerbers.zip

spi-memory

crates.io docs.rs Build Status

This crate provides a generic embedded-hal-based driver for different families of SPI Flash and EEPROM chips.

Right now, only 25-series Flash chips are supported. Feel free to send PRs to support other families though!

Please refer to the changelog to see what changed in the last releases.

Usage

Add an entry to your Cargo.toml:

[dependencies]
spi-memory = "0.2.0"

Check the API Documentation for how to use the crate's functionality.


lib.rs:

An embedded-hal-based SPI-Flash chip driver.

This crate aims to be compatible with common families of SPI flash chips. Currently, reading 25-series chips is supported, and support for writing and erasing as well as other chip families (eg. 24-series chips) is planned. Contributions are always welcome!

Dependencies