Fix type corrections that were overwritten

This commit is contained in:
Josh Stewart 2016-10-26 00:33:19 +11:00
parent 1a5635d795
commit 2af90436c1
3 changed files with 3 additions and 3 deletions

View File

@ -147,7 +147,7 @@ struct statuses {
unsigned int PW; //In uS unsigned int PW; //In uS
volatile byte runSecs; //Counter of seconds since cranking commenced (overflows at 255 obviously) volatile byte runSecs; //Counter of seconds since cranking commenced (overflows at 255 obviously)
volatile byte secl; //Continous volatile byte secl; //Continous
volatile int loopsPerSecond; volatile unsigned int loopsPerSecond;
boolean launchingSoft; //True when in launch control soft limit mode boolean launchingSoft; //True when in launch control soft limit mode
boolean launchingHard; //True when in launch control hard limit mode boolean launchingHard; //True when in launch control hard limit mode
int freeRAM; int freeRAM;

View File

@ -21,4 +21,6 @@ volatile byte flexCounter = 0;
void instanteneousMAPReading(); void instanteneousMAPReading();
void readMAP(); void readMAP();
unsigned int tempReading;
#endif // SENSORS_H #endif // SENSORS_H

View File

@ -4,8 +4,6 @@ Copyright (C) Josh Stewart
A full copy of the license may be found in the projects root directory A full copy of the license may be found in the projects root directory
*/ */
int tempReading;
void instanteneousMAPReading() void instanteneousMAPReading()
{ {
//Instantaneous MAP readings //Instantaneous MAP readings