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.

HDD6330: Correct voltage values, based on the values found in the OF.

Change-Id: I76a101cd2c96be06fc95ca16871e5c86c2326c2d

+4 -4
+4 -4
firmware/target/arm/philips/hdd6330/powermgmt-hdd6330.c
··· 26 26 27 27 const unsigned short battery_level_dangerous[BATTERY_TYPES_COUNT] = 28 28 { 29 - 3550 29 + 3500 30 30 }; 31 31 32 32 const unsigned short battery_level_shutoff[BATTERY_TYPES_COUNT] = 33 33 { 34 - 3500 34 + 3400 35 35 }; 36 36 37 37 /* voltages (millivolt) of 0%, 10%, ... 100% when charging disabled */ 38 38 const unsigned short percent_to_volt_discharge[BATTERY_TYPES_COUNT][11] = 39 39 { 40 - { 3480, 3550, 3590, 3610, 3630, 3650, 3700, 3760, 3800, 3910, 3990 }, 40 + { 3400, 3550, 3630, 3690 ,3730, 3770, 3810, 3850, 3890, 3930, 3980 }, 41 41 }; 42 42 43 43 #if CONFIG_CHARGING 44 44 /* voltages (millivolt) of 0%, 10%, ... 100% when charging enabled */ 45 45 const unsigned short percent_to_volt_charge[11] = 46 46 { 47 - 3480, 3550, 3590, 3610, 3630, 3650, 3700, 3760, 3800, 3910, 3990 47 + 3400, 3550, 3630, 3690 ,3730, 3770, 3810, 3850, 3890, 3930, 3980 48 48 }; 49 49 #endif /* CONFIG_CHARGING */ 50 50