-
Hi Everyone, I’ve been analysing the Zephyr flash driver and noticed that its APIs are currently synchronous. I couldn’t find any existing support for asynchronous operations. I have a few questions:
I appreciate any context, advice anyone can share.Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Answered by
nordicjm
May 28, 2025
Replies: 1 comment
-
it would break many things, you can just get that by using a thread which is then blocked on flash operations whilst other threads continue (assuming that the flash supports concurrent read and program/erase) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
JarmouniA
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
it would break many things, you can just get that by using a thread which is then blocked on flash operations whilst other threads continue (assuming that the flash supports concurrent read and program/erase)