Add missing numerical codes for charger op mode

This commit is contained in:
Maxime Augier 2024-08-21 21:49:48 +02:00
parent f2c5b86909
commit bc1a15f27c

View File

@ -132,6 +132,8 @@ pub enum ChargerOpMode {
Finished = 4, Finished = 4,
Error = 5, Error = 5,
Ready = 6, Ready = 6,
AwaitingAuthentication = 7,
Deauthenticating = 8,
} }
#[derive(Clone, Copy, Debug, Deserialize_repr, Eq, Ord, PartialEq, PartialOrd)] #[derive(Clone, Copy, Debug, Deserialize_repr, Eq, Ord, PartialEq, PartialOrd)]