diff options
Diffstat (limited to 'firmware/target/arm/as3525')
-rw-r--r-- | firmware/target/arm/as3525/system-as3525.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/firmware/target/arm/as3525/system-as3525.c b/firmware/target/arm/as3525/system-as3525.c index a7fa78a0d6..af11d7d842 100644 --- a/firmware/target/arm/as3525/system-as3525.c +++ b/firmware/target/arm/as3525/system-as3525.c @@ -484,7 +484,10 @@ void set_cpu_frequency(long frequency) #if defined(SANSA_CLIPZIP) ascodec_write_pmu(0x17, 1, 0x80 | 19); #elif defined(SANSA_CLIPPLUS) - ascodec_write_pmu(0x17, 1, 0x80 | 26); + if (amsv2_variant) + ascodec_write_pmu(0x17, 1, 0x80 | 22); + else + ascodec_write_pmu(0x17, 1, 0x80 | 26); #else ascodec_write_pmu(0x17, 1, 0x80 | 22); #endif |