Lines Matching full:units
95 int voltage_raw; /* units of 4.88 mV */
96 int voltage_uV; /* units of µV */
97 int current_raw; /* units of 0.625 mA */
98 int current_uA; /* units of µA */
99 int accum_current_raw; /* units of 0.25 mAh */
100 int accum_current_uAh; /* units of µAh */
101 int temp_raw; /* units of 0.125 °C */
102 int temp_C; /* units of 0.1 °C */
103 int rated_capacity; /* units of µAh */
105 int full_active_uAh; /* units of µAh */
106 int empty_uAh; /* units of µAh */
107 int life_sec; /* units of seconds */
290 /* DS2760 reports voltage in units of 4.88mV, but the battery class in ds2760_battery_read_status()
291 * reports in units of uV, so convert by multiplying by 4880. */ in ds2760_battery_read_status()
296 /* DS2760 reports current in signed units of 0.625mA, but the battery in ds2760_battery_read_status()
297 * class reports in units of µA, so convert by multiplying by 625. */ in ds2760_battery_read_status()
303 /* DS2760 reports accumulated current in signed units of 0.25mAh. */ in ds2760_battery_read_status()
309 /* DS2760 reports temperature in signed units of 0.125°C, but the in ds2760_battery_read_status()
310 * battery class reports in units of 1/10 °C, so we convert by in ds2760_battery_read_status()
378 /* acr is in units of 0.25 mAh */ in ds2760_battery_set_current_accum()