Skip to content

Commit

Permalink
Fixed printing of stream IDs while starting up.
Browse files Browse the repository at this point in the history
Signed-off-by: Naresh Nayak <[email protected]>
  • Loading branch information
nayakned committed Jan 9, 2025
1 parent 623456b commit bf0e0e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/acf-can/zephyr/acf-can-bridge.c
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ int main(void)
printf("\tDestination MAC Address: %02x:%02x:%02x:%02x:%02x:%02x\n", macaddr[0], macaddr[1], macaddr[2],
macaddr[3], macaddr[4], macaddr[5]);
}
printf("\tListener Stream ID: %llx, Talker Stream ID: %llx\n", listener_stream_id, talker_stream_id);
printf("\tListener Stream ID: 0x%llx, Talker Stream ID: 0x%llx\n", listener_stream_id, talker_stream_id);
printf("\tNumber of ACF messages per AVTP frame in talker stream: %d\n", num_acf_msgs);

// Open a CAN socket for reading frames
Expand Down

0 comments on commit bf0e0e6

Please sign in to comment.