Advertisement
Guest User

M200V4

a guest
Aug 6th, 2020
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.65 KB | None | 0 0
  1. // firmware/target/arm/as3525/system-as3525.c [520]
  2.  
  3.         /* Set CVDD1 power supply */
  4. #ifdef HAVE_ADJUSTABLE_CPU_VOLTAGE
  5. #if defined(SANSA_CLIPZIP)
  6.         ascodec_write_pmu(0x17, 1, 0x80 | 20);
  7. #elif defined(SANSA_CLIPPLUS)
  8.         if (amsv2_variant)
  9.             ascodec_write_pmu(0x17, 1, 0x80 | 22);
  10.         else
  11.             ascodec_write_pmu(0x17, 1, 0x80 | 26);
  12. #elif defined(SANSA_FUZEV2)
  13.         /*Some FuzeV2 devices have trouble reading SD at low voltage*/
  14.     ascodec_write_pmu(0x17, 1, 0x80 | 26);
  15. #elif defined(SANSA_M200V4)
  16.     ascodec_write_pmu(0x17, 1, 0x80 | 26);
  17. #else
  18.         ascodec_write_pmu(0x17, 1, 0x80 | 22);
  19. #endif
  20. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement