Skip to content

Commit

Permalink
fixed dump_dids bug so only the DID value is displayed
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdetrano committed Oct 30, 2023
1 parent 33b6e7f commit 83708a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caringcaribou/modules/uds.py
Original file line number Diff line number Diff line change
Expand Up @@ -1078,7 +1078,7 @@ def dump_dids(arb_id_request, arb_id_response, timeout,
if response and Iso14229_1.is_positive_response(response):
responses.append((identifier, response))
if print_results:
print('0x{:04x}'.format(identifier), list_to_hex_str(response))
print('0x{:04x}'.format(identifier), list_to_hex_str(response[3:]))
if print_results:
print("\nDone!")
return responses
Expand Down

0 comments on commit 83708a0

Please sign in to comment.