From 294dd9740998c9385536e90bf3cd439e5afd4f88 Mon Sep 17 00:00:00 2001 From: jogo- Date: Sat, 8 Jun 2019 09:32:05 +0200 Subject: [PATCH] Update isotpdump.c Fix Service 0x23 naming according to the standard "ReadDataByMemory" -> "ReadMemoryByAddress" --- isotpdump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isotpdump.c b/isotpdump.c index 54b31c1..166e98a 100644 --- a/isotpdump.c +++ b/isotpdump.c @@ -102,7 +102,7 @@ void print_uds_message(int service, int nrc) case 0x14: service_name = "ClearDiagnosticInformation"; break; case 0x19: service_name = "ReadDTCInformation"; break; case 0x22: service_name = "ReadDataByIdentifier"; break; - case 0x23: service_name = "ReadDataByMemory"; break; + case 0x23: service_name = "ReadMemoryByAddress"; break; case 0x24: service_name = "ReadScalingDataByIdentifier"; break; case 0x27: service_name = "SecurityAccess"; break; case 0x28: service_name = "CommunicationControl"; break;