29 lines
575 B
C#
29 lines
575 B
C#
namespace HC_APTBS.Infrastructure.Kwp
|
|
{
|
|
public enum PacketCommand : byte
|
|
{
|
|
ReadIdent = 0x00,
|
|
ReadRomEeprom = 0x03,
|
|
ActuatorTest = 0x04,
|
|
FaultCodesDelete = 0x05,
|
|
End = 0x06,
|
|
FaultCodesRead = 0x07,
|
|
ACK = 0x09,
|
|
NAK = 0x0A,
|
|
SoftwareCoding = 0x10,
|
|
ReadEeprom = 0x19,
|
|
WriteEeprom = 0x1A,
|
|
Custom = 0x1B,
|
|
GroupReading = 0x29,
|
|
Login = 0x2B,
|
|
GroupReadingResponse = 0xE7,
|
|
ReadEepromResponse = 0xEF,
|
|
ActuatorTestResponse = 0xF5,
|
|
AsciiData = 0xF6,
|
|
WriteEepromResponse = 0xF9,
|
|
FaultCodesResponse = 0xFC,
|
|
ReadRomEepromResponse = 0xFD,
|
|
}
|
|
|
|
}
|