Merge pull request #3744 from mrodgers-witekio/fix-stm32f3xx-flash-erase

stm32: flash: fix flash erase on stm32f3xx series
This commit is contained in:
Dario Nieuwenhuis 2025-01-08 10:55:04 +00:00 committed by GitHub
commit 6ec108232e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -64,8 +64,8 @@ pub(crate) unsafe fn blocking_erase_sector(sector: &FlashSector) -> Result<(), E
// BSY bit, because there is a one-cycle delay between
// setting the STRT bit and the BSY bit being asserted
// by hardware. See STM32F105xx, STM32F107xx device errata,
// section 2.2.8
#[cfg(stm32f1)]
// section 2.2.8, and also RM0316 Rev 10 section 4.2.3 for
// STM32F3xx series.
pac::FLASH.cr().read();
let mut ret: Result<(), Error> = wait_ready_blocking();