Slightly raise voltage on FuzeV2 devices.

Some devices seem to have trouble accessing the storage at lower voltages.
This commit is contained in:
Michael Giacomelli 2018-07-28 11:05:59 -04:00
parent 3e91ad5df2
commit c75aac8424

View file

@ -594,6 +594,9 @@ void set_cpu_frequency(long frequency)
ascodec_write_pmu(0x17, 1, 0x80 | 22);
else
ascodec_write_pmu(0x17, 1, 0x80 | 26);
#elif defined(SANSA_FUZEV2)
/*Some FuzeV2 devices have trouble reading SD at low voltage*/
ascodec_write_pmu(0x17, 1, 0x80 | 26);
#else
ascodec_write_pmu(0x17, 1, 0x80 | 22);
#endif