Files
HC_APTBS/Infrastructure/Kwp/Packets/ReadEepromResponsePacket.cs
2026-04-11 12:45:18 +02:00

24 lines
593 B
C#

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