fix code version

This commit is contained in:
Vitor_Boss 2019-03-03 02:08:33 -03:00
parent 7409fc0ce5
commit dd942c55aa
2 changed files with 6 additions and 6 deletions

View File

@ -196,7 +196,7 @@ void command()
break;
case 'Q': // send code version
Serial.print(F("speeduino 201902"));
Serial.print(F("speeduino 201903-dev"));
break;
case 'r': //New format for the optimised OutputChannels
@ -226,7 +226,7 @@ void command()
break;
case 'S': // send code version
Serial.print(F("Speeduino 2019.02"));
Serial.print(F("Speeduino 2019.03-dev"));
currentStatus.secl = 0; //This is required in TS3 due to its stricter timings
break;

View File

@ -76,11 +76,11 @@ void initialiseSchedulers()
fuelSchedule5.compare = &FUEL5_COMPARE;
#endif
#if (INJ_CHANNELS >= 6)
fuelSchedule5.counter = &FUEL6_COUNTER;
fuelSchedule6.counter = &FUEL6_COUNTER;
fuelSchedule6.compare = &FUEL6_COMPARE;
#endif
#if (INJ_CHANNELS >= 7)
fuelSchedule5.counter = &FUEL7_COUNTER;
fuelSchedule7.counter = &FUEL7_COUNTER;
fuelSchedule7.compare = &FUEL7_COMPARE;
#endif
#if (INJ_CHANNELS >= 8)
@ -119,11 +119,11 @@ void initialiseSchedulers()
ignitionSchedule5.compare = &IGN5_COMPARE;
#endif
#if (INJ_CHANNELS >= 6)
ignitionSchedule5.counter = &IGN6_COUNTER;
ignitionSchedule6.counter = &IGN6_COUNTER;
ignitionSchedule6.compare = &IGN6_COMPARE;
#endif
#if (INJ_CHANNELS >= 7)
ignitionSchedule5.counter = &IGN7_COUNTER;
ignitionSchedule7.counter = &IGN7_COUNTER;
ignitionSchedule7.compare = &IGN7_COMPARE;
#endif
#if (INJ_CHANNELS >= 8)