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,20 @@
#ifndef __FLEXRAYCRCSTATUS_H_
#define __FLEXRAYCRCSTATUS_H_
#include <cstdint>
namespace icsneo {
namespace FlexRay {
enum class CRCStatus {
OK = 0,
Error,
NoCRC
};
} // namespace FlexRay
} // namespace icsneo
#endif // __FLEXRAYCRCSTATUS_H_