File tree 1 file changed +4
-4
lines changed
battery-service/src/fuel_gauge
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ impl<F: embedded_batteries_async::smart_battery::SmartBattery> FuelGauge<F> {
62
62
if let BatteryMsgs :: Acpi ( crate :: BatteryMessage :: State ( state) ) = res. unwrap( ) {
63
63
state
64
64
} else {
65
- 1234
65
+ unreachable! ( ) ;
66
66
}
67
67
)
68
68
}
@@ -82,7 +82,7 @@ impl<F: embedded_batteries_async::smart_battery::SmartBattery> FuelGauge<F> {
82
82
if let BatteryMsgs :: Acpi ( crate :: BatteryMessage :: PresentRate ( current) ) = res. unwrap( ) {
83
83
current
84
84
} else {
85
- 1234
85
+ unreachable! ( ) ;
86
86
}
87
87
)
88
88
}
@@ -107,7 +107,7 @@ impl<F: embedded_batteries_async::smart_battery::SmartBattery> FuelGauge<F> {
107
107
if let BatteryMsgs :: Acpi ( crate :: BatteryMessage :: RemainCap ( cap) ) = res. unwrap( ) {
108
108
cap
109
109
} else {
110
- 1234
110
+ unreachable! ( ) ;
111
111
}
112
112
)
113
113
}
@@ -127,7 +127,7 @@ impl<F: embedded_batteries_async::smart_battery::SmartBattery> FuelGauge<F> {
127
127
if let BatteryMsgs :: Acpi ( crate :: BatteryMessage :: PresentVolt ( v) ) = res. unwrap( ) {
128
128
v
129
129
} else {
130
- 1234
130
+ unreachable! ( ) ;
131
131
}
132
132
)
133
133
}
You can’t perform that action at this time.
0 commit comments