2026-02-25 5:43 AM
There does not seem to be any way of viewing a debug variable in hex.
The closest workaround is to prefix (void*) before the expression in the watch window.
This is no good for viewing an array of hex digits like for example a CAN bus message.
Solved! Go to Solution.
2026-02-25 1:15 PM
Hi @Michael_John
You can add the following attribute to your debug configuration:
"preRunCommands": [
"set output 16"
],
Best Regards,
/Flo
2026-02-25 1:15 PM
Hi @Michael_John
You can add the following attribute to your debug configuration:
"preRunCommands": [
"set output 16"
],
Best Regards,
/Flo
2026-02-26 8:22 AM
Hi Forent
Thank you, that works nicely.
I see you have already marked your own answer as accepted.
Thank you for your response
2026-04-19 9:21 AM
Worked! Thanks!!