We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be really useful if the erase value of a flash was exposed on the NorFlash trait(s). Maybe with a default of 0xFF, something like:
NorFlash
trait NorFlash { ... const ERASE_VALUE: u8 = 0xFF; }
The text was updated successfully, but these errors were encountered:
Add ERASE_BYTE const to NorFlash trait
3e98f1c
Related issue rust-embedded-community#35
This is part oft the larger discussion at #23. That one has stalled, maybe your fresh pair of eyes could help get that unstuck.
Sorry, something went wrong.
I also believe that would be a good feature. This would allow embassy-boot to be compatible with more devices (it currently fails on STM32L0 for instance). As the comment says, they expect such a feature in https://github.com/embassy-rs/embassy/blob/3d6a270f30c45eaf394c8eb8bf182dd1a7ec2d7b/embassy-boot/src/lib.rs#L17
No branches or pull requests
It would be really useful if the erase value of a flash was exposed on the
NorFlash
trait(s). Maybe with a default of 0xFF, something like:The text was updated successfully, but these errors were encountered: