Replies: 2 comments 12 replies
-
The blocking version will be in the next release. Async flash operations are not supported because that would require all your code to be in RAM. |
Beta Was this translation helpful? Give feedback.
11 replies
-
For anybody running into the same problem but still want to use sequential-storage. If by chance you use embassy you could use this wrapper to create an adapter from a blocking to an async storage. If not, a simple own implementation should do it too. Im currently testing it but so far it looks good. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hey,
I just encounter a crate that I want to use. However I can not use it without an manual wrapper implementing
embedded_storage_async::nor_flash
traits aroundesp_storage::FlashStorage
.I was asking myself if its a good idea if
esp_storage::FlashStorage
should implement these? Maybe take it as feature or am I overseeing something which speaks against it? AFAIK all supported chips use NOR flash, right?Beta Was this translation helpful? Give feedback.
All reactions