File tree 4 files changed +13
-14
lines changed
4 files changed +13
-14
lines changed Original file line number Diff line number Diff line change @@ -62,8 +62,9 @@ int n3Speed = 0;
62
62
extern unsigned int __bss_end ;
63
63
extern unsigned int __heap_start ;
64
64
extern void * __brkval ;
65
- const int atfReadNum = 10 ;
66
- int atfReadVal [atfReadNum ];
65
+ const int atfSensorFilterWeight = 16 ; // higher numbers = heavier filtering
66
+ const int atfSensorNumReadings = 10 ; // number of readings
67
+ int atfSensorAverage = 0 ; // the running average
67
68
68
69
// End of internals
69
70
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ void decideGear(int wantedGear) {
124
124
int atfTemp = atfRead ();
125
125
int tpsPercentValue = tpsRead ();
126
126
// Determine speed related downshift and upshift here.
127
- int autoGear = ReadMap (gearMap ,tpsPercentValue , vehicleSpeed );
127
+ int autoGear = readMap (gearMap ,tpsPercentValue , vehicleSpeed );
128
128
129
129
if ( ! shiftBlocker && wantedGear < 6 ) {
130
130
if ( (fullAuto && autoGear > gear && wantedGear > gear ) || (! fullAuto && wantedGear > gear && autoGear > gear ) ) {
Original file line number Diff line number Diff line change @@ -59,7 +59,6 @@ void setup() {
59
59
analogWrite (spc,0 ); // No pressure here by default.
60
60
analogWrite (mpc,255 ); // We want constant pressure here.
61
61
analogWrite (tcc,0 ); // No pressure here by default.
62
- for (int atfNum = 0 ; atfNum < atfReadNum; atfNum++) { atfReadVal[atfNum]; }
63
62
Serial.println (" Started." );
64
63
updateDisplay ();
65
64
}
Original file line number Diff line number Diff line change 1
1
2
+
2
3
int tpsRead () {
3
4
int tpsPercentValue = 0 ;
4
5
if ( tpsSensor ) {
@@ -102,25 +103,23 @@ int loadRead() {
102
103
}
103
104
//reading oil temp sensor / pn-switch (same input pin, see page 27: http://www.all-trans.by/assets/site/files/mercedes/722.6.1.pdf)
104
105
int atfRead () {
105
- int readIndex = 0 ;
106
- int total = 0 ;
107
- int average = 0 ;
108
106
int atfTempCalculated = 0 ;
109
107
int atfTempRaw = analogRead (atfPin );
110
108
int atfTemp = 0 ;
109
+ int sensorReading = 0 ;
110
+ int i = 0 ;
111
111
112
112
if (atfTempRaw > 1015 ) { drive = false; atfTempCalculated = 9999 ; atfTemp = 0 ; }
113
113
else { drive = true;
114
- total = total - atfReadVal [readIndex ];
115
114
atfTempCalculated = (0.0309 * atfTempRaw * atfTempRaw ) - 44.544 * atfTempRaw + 16629 ;
116
115
atfTemp = -0.000033059 * atfTempCalculated * atfTempCalculated + 0.2031 * atfTempCalculated - 144.09 ; //same as above
117
- atfReadVal [ readIndex ] = atfTemp ;
118
- total = total + atfReadVal [ readIndex ] ;
119
- readIndex = readIndex + 1 ;
120
- if ( readIndex >= atfReadNum ) { readIndex = 0 ; }
121
- average = total / atfReadNum ;
116
+ if ( i < atfSensorNumReadings ) {
117
+ sensorReading = atfTemp ;
118
+ atfSensorAverage = atfSensorAverage + ( sensorReading - atfSensorAverage ) / atfSensorFilterWeight ;
119
+ i ++ ;
120
+ }
122
121
}
123
- return average ;
122
+ return atfSensorAverage ;
124
123
}
125
124
126
125
int oilRead () {
You can’t perform that action at this time.
0 commit comments