#[derive(Debug, Copy, Clone, PartialEq)]
pub enum ThermistorType {
Ntc10KOhm = 0,
Ntc100KOhm = 1 << 11,
}
#[derive(Debug, Copy, Clone, PartialEq)]
pub enum ChargePumpVoltageConfiguration {
Cp6V = 0,
Cp8V = 1 << 8,
Cp10V = 1 << 9,
}
#[derive(Debug, Copy, Clone, PartialEq)]
pub enum AlwaysOnRegulatorConfiguration {
Disabled = 0,
Enabled3p4V = 1 << 14,
Enabled1p8V = 1 << 15,
}
#[derive(Debug, Copy, Clone, PartialEq)]
pub enum BatteryPackUpdate {
UpdateEvery22p4s = 0,
AfterMeasurementsCompleted = 1 << 13,
}