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.

Adjust iPod Classic CPU clock speed constants to at least roughly correct values

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

+6 -6
+2 -2
firmware/export/s5l8702.h
··· 28 28 #define REG16_PTR_T volatile uint16_t * 29 29 #define REG32_PTR_T volatile uint32_t * 30 30 31 - //TODO: Figure out 32 - #define TIMER_FREQ (1843200 * 4 * 26 / 1 / 4) /* 47923200 Hz */ 31 + //TODO: Figure out exact value 32 + #define TIMER_FREQ 216000000 33 33 34 34 #define CACHEALIGN_BITS (4) /* 2^4 = 16 bytes */ 35 35
+4 -4
firmware/target/arm/s5l8702/system-target.h
··· 24 24 #include "system-arm.h" 25 25 #include "mmu-arm.h" 26 26 27 - //TODO: Figure out 27 + //TODO: Figure out exact values 28 28 #define CPUFREQ_SLEEP 32768 29 - #define CPUFREQ_MAX (1843200 * 4 * 26 / 1) /* 191692800 Hz */ 30 - #define CPUFREQ_DEFAULT (CPUFREQ_MAX/4) /* 47923200 Hz */ 31 - #define CPUFREQ_NORMAL (CPUFREQ_MAX/4) 29 + #define CPUFREQ_MAX 216000000 30 + #define CPUFREQ_DEFAULT 216000000 31 + #define CPUFREQ_NORMAL 216000000 32 32 33 33 #define STORAGE_WANTS_ALIGN 34 34