erase_sector_blocking -> blocking_erase_sector

This commit is contained in:
Rasmus Melchior Jacobsen
2023-05-25 23:13:20 +02:00
parent 4478d8322b
commit 74104aafda
5 changed files with 8 additions and 4 deletions

View File

@ -27,7 +27,7 @@ pub(crate) unsafe fn disable_blocking_write() {
pub(crate) unsafe fn blocking_write(_start_address: u32, _buf: &[u8; WRITE_SIZE]) -> Result<(), Error> {
unimplemented!();
}
pub(crate) unsafe fn erase_sector_blocking(_sector: &FlashSector) -> Result<(), Error> {
pub(crate) unsafe fn blocking_erase_sector(_sector: &FlashSector) -> Result<(), Error> {
unimplemented!();
}
pub(crate) unsafe fn clear_all_err() {