Merge pull request #5810 from EmergReanimator/bugfix

Fixed build issue when INTERNAL_FLASH_FILESYSTEM, DISABLE_FILESYSTEM set
This commit is contained in:
Scott Shawcroft 2022-01-05 10:41:12 -08:00 committed by GitHub
commit faa26ef6ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,7 +46,8 @@ uint32_t supervisor_flash_get_block_count(void) {
return 0;
}
void supervisor_flash_flush(void) {
void port_internal_flash_flush(void) {
return;
}
mp_uint_t supervisor_flash_read_blocks(uint8_t *dest, uint32_t block, uint32_t num_blocks) {