refactoring - making enum compatible with tools

This commit is contained in:
rusefi 2021-10-16 17:37:32 -04:00
parent 1a0bce808a
commit d438f9f9cb
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@
* maybe we just need a better naming convention?
**************************************
*/
enum class SensorType : unsigned char {
typedef enum __attribute__ ((__packed__)) {
Invalid = 0,
Clt = 1,
Iat = 2,
@ -84,4 +84,4 @@ enum class SensorType : unsigned char {
// Leave me at the end!
PlaceholderLast = 38,
};
} SensorType;