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.

as3525: Fix build warning with newer toolchains

Change-Id: I3dad32caf0dc087b717ed76b900f414aa1608bc2

+5 -1
+5 -1
firmware/target/arm/as3525/app.lds
··· 13 13 /* End of the audio buffer, where the codec buffer starts */ 14 14 #define ENDAUDIOADDR (DRAM_ORIG + DRAMSIZE) 15 15 16 - #define CODEC_BUFFER_FILLS_IRAM defined(AMS_LOWMEM) || (CONFIG_CPU == AS3525v2) 16 + #if defined(AMS_LOWMEM) || (CONFIG_CPU == AS3525v2) 17 + #define CODEC_BUFFER_FILLS_IRAM 1 18 + #else 19 + #define CODEC_BUFFER_FILLS_IRAM 0 20 + #endif 17 21 18 22 #if CODEC_BUFFER_FILLS_IRAM 19 23 /* Entire codec buffer in IRAM */