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

24 lines
594 B
C#

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