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