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,31 @@
#ifndef __FLEXRAYPOCCOMMAND_H_
#define __FLEXRAYPOCCOMMAND_H_
#include <cstdint>
namespace icsneo {
namespace FlexRay {
enum class POCCommand : uint8_t {
CommandNotAccepted = 0x00,
Config = 0x01,
Ready = 0x02,
Wakeup = 0x03,
Run = 0x04,
AllSlots = 0x05,
Halt = 0x06,
Freeze = 0x07,
SendMTS = 0x08,
AllowColdstart = 0x09,
ResetStatusIndicators = 0x0a,
MonitorMode = 0x0b,
ClearRAMs = 0x0c,
Unknown = 0xff
};
} // namespace FlexRay
} // namespace icsneo
#endif // __FLEXRAYPOCCOMMAND_H_