MSCAN Updated

Dependents:   FBRLogger

Fork of MSCAN by Vesko Karadzhov

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers State.h Source File

State.h

00001 #ifndef FBRDASH_STATE_H
00002 #define FBRDASH_STATE_H
00003 
00004 struct State
00005 {
00006     unsigned short int rpm;
00007     float throttle_pos;
00008     float manifold_pres;
00009     float air_temp;
00010     float coolant_temp;
00011     unsigned char lambda;
00012     unsigned char speed;
00013     float accel_x;
00014     float accel_y;
00015     unsigned char gear;
00016     unsigned char oil_temp;
00017     unsigned char warnings;
00018     float voltage;
00019 };
00020 
00021 #endif