https://github.com/eldruin/w25-rs
Platform-agnostic Rust driver for Winbond's W25 serial flash memory devices.
https://github.com/eldruin/w25-rs
driver embedded embedded-hal embedded-hal-driver flash memory no-std nor rust serial spi storage
Last synced: about 1 year ago
JSON representation
Platform-agnostic Rust driver for Winbond's W25 serial flash memory devices.
- Host: GitHub
- URL: https://github.com/eldruin/w25-rs
- Owner: eldruin
- License: apache-2.0
- Created: 2019-05-30T15:03:14.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-30T15:06:58.000Z (about 7 years ago)
- Last Synced: 2024-10-16T05:29:03.769Z (over 1 year ago)
- Topics: driver, embedded, embedded-hal, embedded-hal-driver, flash, memory, no-std, nor, rust, serial, spi, storage
- Language: Rust
- Size: 8.79 KB
- Stars: 1
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# Rust Winbond's W25 Serial Flash Memory Driver
[](https://travis-ci.org/eldruin/w25-rs)
[](https://coveralls.io/github/eldruin/w25-rs?branch=master)

This is a platform agnostic Rust driver for the W25 serial flash memory devices from Winbond using the [`embedded-hal`] traits.
## The devices
Winbond's W25X and W25Q SpiFlash® Multi-I/O Memories feature the popular Serial Peripheral Interface (SPI), densities from 512K-bit to 512M-bit, small erasable sectors and the industry's highest performance.
Datasheets:
- [W25Q64FW](https://www.winbond.com/resource-files/w25q64fw%20revn%2005182017%20sfdp.pdf)
## Usage
To use this driver, import this crate and an `embedded_hal` implementation,
then instantiate the appropriate device.
Please find additional examples using hardware in this repository: [driver-examples].
[driver-examples]: https://github.com/eldruin/driver-examples
```rust
```
## Support
For questions, issues, feature requests like compatibility with similar devices
and other changes, please file an
[issue in the github project](https://github.com/eldruin/w25-rs/issues).
## License
Licensed under either of
* Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or
http://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or
http://opensource.org/licenses/MIT)
at your option.
### Contributing
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache-2.0 license, shall
be dual licensed as above, without any additional terms or conditions.
[`embedded-hal`]: https://github.com/rust-embedded/embedded-hal