70 lines
1.5 KiB
C++
70 lines
1.5 KiB
C++
#ifndef __LINMESSAGE_H_
|
|
#define __LINMESSAGE_H_
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#include "icsneo/communication/message/message.h"
|
|
#include "icsneo/communication/network.h"
|
|
#include <vector>
|
|
|
|
namespace icsneo {
|
|
|
|
struct LINErrorFlags {
|
|
bool ErrRxBreakOnly = false;
|
|
bool ErrRxBreakSyncOnly = false;
|
|
bool ErrTxRxMismatch = false;
|
|
bool ErrRxBreakNotZero = false;
|
|
bool ErrRxBreakTooShort = false;
|
|
bool ErrRxSyncNot55 = false;
|
|
bool ErrRxDataLenOver8 = false;
|
|
bool ErrFrameSync = false;
|
|
bool ErrFrameMessageID = false;
|
|
bool ErrFrameResponderData = false;
|
|
bool ErrChecksumMatch = false;
|
|
};
|
|
|
|
struct LINStatusFlags {
|
|
bool TxChecksumEnhanced = false;
|
|
bool TxCommander = false;
|
|
bool TxResponder = false;
|
|
bool TxAborted = false;
|
|
bool UpdateResponderOnce = false;
|
|
bool HasUpdatedResponderOnce = false;
|
|
bool BusRecovered = false;
|
|
bool BreakOnly = false;
|
|
};
|
|
|
|
class LINMessage : public BusMessage {
|
|
public:
|
|
const BusMessage::Type getBusType() const final { return BusMessage::Type::LIN; }
|
|
|
|
enum class Type : uint8_t {
|
|
NOT_SET = 0,
|
|
LIN_COMMANDER_MSG,
|
|
LIN_HEADER_ONLY,
|
|
LIN_BREAK_ONLY,
|
|
LIN_SYNC_ONLY,
|
|
LIN_UPDATE_RESPONDER,
|
|
LIN_ERROR
|
|
};
|
|
|
|
static void calcChecksum(LINMessage& message);
|
|
uint8_t calcProtectedID(uint8_t& id);
|
|
|
|
LINMessage() {};
|
|
LINMessage(uint8_t id) : ID(id & 0x3Fu), protectedID(calcProtectedID(ID)) {};
|
|
|
|
uint8_t ID = 0;
|
|
uint8_t protectedID = 0;
|
|
uint8_t checksum = 0;
|
|
LINMessage::Type linMsgType = Type::NOT_SET;
|
|
bool isEnhancedChecksum = false;
|
|
LINErrorFlags errFlags;
|
|
LINStatusFlags statusFlags;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __cplusplus
|
|
|
|
#endif |