mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-05 01:18:36 +02:00
24 lines
294 B
C++
24 lines
294 B
C++
#ifndef __FLEXRAYCRCSTATUS_H_
|
|
#define __FLEXRAYCRCSTATUS_H_
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#include <cstdint>
|
|
|
|
namespace icsneo {
|
|
|
|
namespace FlexRay {
|
|
|
|
enum class CRCStatus {
|
|
OK = 0,
|
|
Error,
|
|
NoCRC
|
|
};
|
|
|
|
} // namespace FlexRay
|
|
|
|
} // namespace icsneo
|
|
|
|
#endif // __cplusplus
|
|
|
|
#endif // __FLEXRAYCRCSTATUS_H_
|