24 lines
578 B
C#
24 lines
578 B
C#
using System.Collections.Generic;
|
|
|
|
namespace HC_APTBS.Infrastructure.Kwp.Packets
|
|
{
|
|
public class ReadRomEepromResponse : Packet
|
|
{
|
|
public ReadRomEepromResponse(List<byte> bytes) : base(bytes)
|
|
{
|
|
//Dump();
|
|
}
|
|
|
|
private void Dump()
|
|
{
|
|
System.Diagnostics.Debug.Write("Received \"Read ROM/EEPROM Response\" packet:");
|
|
foreach (var b in Body)
|
|
{
|
|
System.Diagnostics.Debug.Write($" {b:X2}");
|
|
}
|
|
|
|
System.Diagnostics.Debug.WriteLine("");
|
|
}
|
|
}
|
|
}
|