Operating NOPs

This commit is contained in:
Peter D. Gray 2022-01-25 10:37:04 -05:00
parent c85126e212
commit c3b29e9ce5
No known key found for this signature in database
GPG Key ID: F0E6CC6AFC16CF7B

View File

@ -427,6 +427,12 @@ int direct_psram_write_blocks(const uint8_t *src, uint32_t block_num, uint32_t n
memcpy(ptr, src, num_blocks * BLOCK_SIZE);
// Need some recovery time here for PSRAM or QUADSPI module. Otherwise, lockup!
asm("nop");
asm("nop");
asm("nop");
asm("nop");
return 0;
}