Begin work on FlexRay support

This commit is contained in:
Paul Hollinsky
2019-10-16 16:43:31 -04:00
parent 0607986114
commit 2f9844df92
65 changed files with 1137 additions and 120 deletions
@@ -0,0 +1,21 @@
#ifndef __FLEXRAYSYMBOL_H_
#define __FLEXRAYSYMBOL_H_
#include <cstdint>
namespace icsneo {
namespace FlexRay {
enum class Symbol {
None = 0,
Unknown,
Wakeup,
CAS
};
} // namespace FlexRay
} // namespace icsneo
#endif // __FLEXRAYSYMBOL_H_