mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-05 09:28:40 +02:00
Refining the FlexRay API
This commit is contained in:
@@ -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_
|
||||
Reference in New Issue
Block a user