diff --git a/speeduino/comms.ino b/speeduino/comms.ino index 09b5717a..2ff4d364 100644 --- a/speeduino/comms.ino +++ b/speeduino/comms.ino @@ -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; diff --git a/speeduino/scheduler.ino b/speeduino/scheduler.ino index 84acd274..c55837cc 100644 --- a/speeduino/scheduler.ino +++ b/speeduino/scheduler.ino @@ -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)