speeduino/globals.h

15 lines
253 B
C
Raw Normal View History

2013-07-08 17:43:41 -07:00
#include <Arduino.h>
byte ms_version = 20;
2013-07-09 17:26:16 -07:00
//The status struct contains the current values for all 'live' variables
struct statuses {
volatile boolean hasSync;
unsigned int RPM;
byte MAP;
byte TPS;
byte VE;
unsigned long PW; //In uS
};