embedded-storage icon indicating copy to clipboard operation
embedded-storage copied to clipboard

An Embedded Storage Abstraction Layer

Results 29 embedded-storage issues
Sort by recently updated
recently updated
newest added

I added a changelog, the licenses and filled the authors in commit order. Is there anything left to do before the 0.4.0 release? @MathiasKoch could you add the team @rust-embedded-community/embedded-storage...

Would a "secure storage" abstraction fit in this repo? My initial use case is something rather high level to store and retrieve secrets by a generic key but happy to...

The WRITE_SIZE, ERASE_SIZE etc are `usize`: https://github.com/rust-embedded-community/embedded-storage/blob/ef207385baa1a7dd34a6778a8bd0238b42f748e9/embedded-storage-async/src/nor_flash.rs#L7 But the addresses are `u32`: https://github.com/rust-embedded-community/embedded-storage/blob/ef207385baa1a7dd34a6778a8bd0238b42f748e9/embedded-storage-async/src/nor_flash.rs#L20 This makes doing math on addresses quite annoying: it needs a lot of casts. I sort of...

Hi all, I'd like to list a few issues for those trying to write libraries on top of the abstractions provided by this crate. I'll only focus on `nor_flash::ReadNorFlash` and...

Shouldn't the read offset be expressed in the same terms as the write offset and be a multiple of READ_SIZE? See https://github.com/rust-embedded-community/embedded-storage/blob/master/src/nor_flash.rs#L14

I wanted to start a discussion about the scope of `embedded-storage`. It could be one of the following: - Define a common interface between device drivers and generic storage implementations...

Thanks for this initiative. I'd be keen on seeing some examples or at least references to these traits having been implemented. Meanwhile, I have a PR in progress for nrf-hal...

As of version 0.1.0 (coming from #12) addresses are fixed to `u32`, however, this is inconvenient for devices with very small small (wasteful) or very big (> 4GB) capacity (cannot...

Quote from @MathiasKoch in #9: > How do you guys feel about nb::? Should these functions be nb? i am not sure it makes sense, unless implementors spend a lot...

First off, I am glad this finally got it's own repository so progress can be made in this area. I would vote to remove most of the traits currently in...