drivers: fuelgauge: Add missing property values

Adds missing property values for battery connect and present state

Signed-off-by: Philipp Steiner <philipp.steiner1987@gmail.com>
This commit is contained in:
Philipp Steiner 2025-04-29 13:37:05 +02:00 committed by Benjamin Cabé
commit 9a8e4663ac

View file

@ -130,10 +130,14 @@ union fuel_gauge_prop_val {
int current;
/** FUEL_GAUGE_CYCLE_COUNT */
uint32_t cycle_count;
/** FUEL_GAUGE_CONNECT_STATE */
uint32_t connect_state;
/** FUEL_GAUGE_FLAGS */
uint32_t flags;
/** FUEL_GAUGE_FULL_CHARGE_CAPACITY */
uint32_t full_charge_capacity;
/** FUEL_GAUGE_PRESENT_STATE */
bool present_state;
/** FUEL_GAUGE_REMAINING_CAPACITY */
uint32_t remaining_capacity;
/** FUEL_GAUGE_RUNTIME_TO_EMPTY */