summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristopher Peplin <chris.peplin@rhubarbtech.com>2014-01-03 12:18:33 -0500
committerChristopher Peplin <chris.peplin@rhubarbtech.com>2014-01-03 12:18:33 -0500
commit64af0554cb8c60f56bf2c1fa5cd59b9c2c5758ff (patch)
treeee1e4a72450c5c2e592aca40c400e7a259f9f42d /src
parentfe5f39179f7c85a2924c288149b5ecc8488918b1 (diff)
Print full payload by giving it enough buffer. DOH.
Diffstat (limited to 'src')
-rw-r--r--src/isotp/isotp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/isotp/isotp.c b/src/isotp/isotp.c
index 6522f7aa..67a5df17 100644
--- a/src/isotp/isotp.c
+++ b/src/isotp/isotp.c
@@ -21,8 +21,7 @@ IsoTpShims isotp_init_shims(LogShim log, SendCanMessageShim send_can_message,
void isotp_message_to_string(const IsoTpMessage* message, char* destination,
size_t destination_length) {
- // TODO why is this still not printing the entire payload?
- snprintf(destination, destination_length, "ID: 0x%02x, Payload: 0x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
+ snprintf(destination, destination_length, "ID: 0x%02x, Payload: 0x%02x%02x%02x%02x%02x%02x%02x%02x",
message->arbitration_id,
message->payload[0],
message->payload[1],