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.

Sansa ASM: clock-target.h needs to know the CPU

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24521 a1c6a512-1295-4272-9138-f99709370657

+3
+3
firmware/target/arm/as3525/clock-target.h
··· 21 21 #ifndef CLOCK_TARGET_H 22 22 #define CLOCK_TARGET_H 23 23 24 + #include "config.h" 25 + #include "cpu.h" 26 + 24 27 /* returns clock divider, given maximal target frequency and clock reference */ 25 28 #define CLK_DIV(ref, target) ((ref + target - 1) / target) 26 29