diff options
author | Scott Murray <scott.murray@konsulko.com> | 2024-08-15 15:54:01 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2024-08-19 13:42:24 +0000 |
commit | 1e99e3a52f3d4d81d7cc890630ac591d38f731df (patch) | |
tree | 8efe4e7896ba5455f9c7d8b265952ccc66b36009 /lib/data/data_providers/hybrid_notifier.dart | |
parent | 6188a4c545e6e6794eba943431ec20108553b98f (diff) |
Fix engine speed signal type
Update use of the VSS engine speed (RPM) signal to match the fix
done to the AGL VSS overlays to restore the upstream integer data
type.
Bug-AGL: SPEC-5204
Change-Id: I1993cf291cdc2ca056f4fb2b389ef4eee5558473
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
(cherry picked from commit 3ef28eeae6e3336232ab13d0d934aa82892dfe74)
Diffstat (limited to 'lib/data/data_providers/hybrid_notifier.dart')
-rw-r--r-- | lib/data/data_providers/hybrid_notifier.dart | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/data/data_providers/hybrid_notifier.dart b/lib/data/data_providers/hybrid_notifier.dart index 51a65fe..f5431f8 100644 --- a/lib/data/data_providers/hybrid_notifier.dart +++ b/lib/data/data_providers/hybrid_notifier.dart @@ -47,7 +47,7 @@ class HybridNotifier extends StateNotifier<Hybrid> { } } - void updateHybridState(double speed, double engineSpeed, bool brake) { + void updateHybridState(double speed, int engineSpeed, bool brake) { // Variable to store the current state HybridState currentState = state.hybridState; @@ -58,7 +58,7 @@ class HybridNotifier extends StateNotifier<Hybrid> { double avgSpeed = 0.0; // Variable for storing the average value of RPM - double avgRpm = 0.0; + double avgRpm = 0; if (speed == 0 && engineSpeed <= 600) { // Set idle state. |