Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of MSCAN by
State.h@6:c857749f9c0c, 2013-03-06 (annotated)
- Committer:
- veskokaradzhov
- Date:
- Wed Mar 06 17:33:14 2013 +0000
- Revision:
- 6:c857749f9c0c
- Parent:
- 5:55a074984183
c
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
intrinseca | 0:4bd0966a0718 | 1 | #ifndef FBRDASH_STATE_H |
intrinseca | 0:4bd0966a0718 | 2 | #define FBRDASH_STATE_H |
intrinseca | 0:4bd0966a0718 | 3 | |
intrinseca | 0:4bd0966a0718 | 4 | struct State |
intrinseca | 0:4bd0966a0718 | 5 | { |
intrinseca | 0:4bd0966a0718 | 6 | unsigned short int rpm; |
intrinseca | 0:4bd0966a0718 | 7 | float throttle_pos; |
intrinseca | 5:55a074984183 | 8 | float manifold_pres; |
intrinseca | 5:55a074984183 | 9 | float air_temp; |
intrinseca | 0:4bd0966a0718 | 10 | float coolant_temp; |
intrinseca | 0:4bd0966a0718 | 11 | unsigned char lambda; |
intrinseca | 0:4bd0966a0718 | 12 | unsigned char speed; |
intrinseca | 5:55a074984183 | 13 | float accel_x; |
intrinseca | 5:55a074984183 | 14 | float accel_y; |
intrinseca | 0:4bd0966a0718 | 15 | unsigned char gear; |
intrinseca | 0:4bd0966a0718 | 16 | unsigned char oil_temp; |
intrinseca | 0:4bd0966a0718 | 17 | unsigned char warnings; |
intrinseca | 0:4bd0966a0718 | 18 | float voltage; |
intrinseca | 0:4bd0966a0718 | 19 | }; |
intrinseca | 0:4bd0966a0718 | 20 | |
intrinseca | 0:4bd0966a0718 | 21 | #endif |