Replaced obsolete-format delay (#3660)

This commit is contained in:
hedger 2024-05-22 22:13:28 +04:00 committed by GitHub
parent 8ba938cec1
commit 807bec14b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -149,9 +149,8 @@ static void furi_hal_flash_begin_with_core2(bool erase_flag) {
/* Erase activity notification */
if(erase_flag) SHCI_C2_FLASH_EraseActivity(ERASE_ACTIVITY_ON);
/* 64mHz 5us core2 flag protection */
for(volatile uint32_t i = 0; i < 35; i++)
;
/* 5us core2 flag protection */
furi_delay_us(5);
FuriHalCortexTimer timer = furi_hal_cortex_timer_get(FURI_HAL_FLASH_C2_LOCK_TIMEOUT_MS * 1000);
while(true) {