Refining the FlexRay API

This commit is contained in:
Paul Hollinsky
2019-11-09 15:34:58 -05:00
parent f0582697a6
commit 3396f5dcce
6 changed files with 41 additions and 3 deletions
@@ -0,0 +1,22 @@
#ifndef __FLEXRAYCHANNEL_H_
#define __FLEXRAYCHANNEL_H_
#include <cstdint>
namespace icsneo {
namespace FlexRay {
// In some cases used as a bitfield
enum class Channel {
None = 0, // Usually an invalid/unset value
A = 1,
B = 2,
AB = 3
};
} // namespace FlexRay
} // namespace icsneo
#endif // __FLEXRAYCHANNEL_H_