Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fat: Ensure bounce buffer is a multiple of MAX_PHYS_SECTOR_SIZE

* if MAX_VARIABLE_LOG_SECTOR is defined, use that
* if MAX_PHYS_SECTOR_SIZE is defined, use that
* use SECTOR_SIZE

Change-Id: Ia314f590fdb300e99df2c60587657c9563b9ce80

+2
+2
firmware/drivers/fat.c
··· 280 280 #ifdef STORAGE_NEEDS_BOUNCE_BUFFER 281 281 #if defined(MAX_VARIABLE_LOG_SECTOR) 282 282 #define BOUNCE_SECTOR_SIZE MAX_VARIABLE_LOG_SECTOR 283 + #elif defined(MAX_PHYS_SECTOR_SIZE) 284 + #define BOUNCE_SECTOR_SIZE MAX_PHYS_SECTOR_SIZE 283 285 #else 284 286 #define BOUNCE_SECTOR_SIZE SECTOR_SIZE 285 287 #endif