We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d096b72 commit 27dae2dCopy full SHA for 27dae2d
vehicle/OVMS.V3/components/vehicle_vweup/src/vehicle_vweup.cpp
@@ -29,7 +29,7 @@
29
#include <string>
30
static const char *TAG = "v-vweup";
31
32
-#define VERSION "0.22.2"
+#define VERSION "0.22.3"
33
34
#include <stdio.h>
35
vehicle/OVMS.V3/components/vehicle_vweup/src/vweup_t26.cpp
@@ -391,7 +391,8 @@ void OvmsVehicleVWeUp::IncomingFrameCan3(CAN_frame_t *p_frame)
391
case 0x320: // Speed
392
StandardMetrics.ms_v_pos_speed->SetValue(((d[4] << 8) + d[3] - 1) / 190);
393
UpdateTripOdo();
394
- CalculateAcceleration(); // only necessary until we find acceleration on T26
+ if (HasNoOBD())
395
+ CalculateAcceleration(); // only necessary until we find acceleration on T26
396
break;
397
398
case 0x527: // Outdoor temperature
0 commit comments