Skip to content

Commit

Permalink
feat(rdbi): Expose results of primitive RDBI
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdinandjarisch committed Sep 15, 2023
1 parent f4b992b commit d921efa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/gallia/commands/primitive/uds/read_by_identifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,7 @@ async def main(self, args: Namespace) -> None:
data = resp.data_record
self.logger.info(f"hex: {data.hex()}")
self.logger.info(f"raw: {repr(data)}")
self.logger.result(
f"{self.ecu.transport.target} responds to {args.data_id:#06x} with {data.hex()}"
)
self.result = data

0 comments on commit d921efa

Please sign in to comment.