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.

echoplayer: disable 50 MHz SDMMC bus clock

While 50 MHz works for low activity and small amounts of
data, there are frequent CRC errors when handling larger
transfers. Increasing drive strength only makes it worse.
Everything seems stable at 25 MHz though.

Change-Id: I3471c490ab63b2302b21ee2fe601519ee5a40ce5

authored by

Aidan MacDonald and committed by
Solomon Peachy
02648abb 45a61d7e

+1 -2
+1 -2
firmware/target/arm/stm32/echoplayer/sdmmc-echoplayer.c
··· 46 46 .bus_widths = SDMMC_BUS_WIDTH_1BIT | 47 47 SDMMC_BUS_WIDTH_4BIT, 48 48 .bus_clocks = SDMMC_BUS_CLOCK_400KHZ | 49 - SDMMC_BUS_CLOCK_25MHZ | 50 - SDMMC_BUS_CLOCK_50MHZ, 49 + SDMMC_BUS_CLOCK_25MHZ, 51 50 .max_nr_blocks = 65535, 52 51 .is_removable = true, 53 52 };