Project Home
Project Home
Source Code
Source Code
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - How to format watchpoints in hex?: (3 Items)
   
How to format watchpoints in hex?  
How do you get the Momentics IDE to show you watchpoints formatted in something other than decimal (like hex, for 
example)? And is there any way to see all the values at once, instead of having to select them one by one?
Re: How to format watchpoints in hex?  
You taking about watchpoints (type of breakpoints) or watch expressions?
If you talking about expression it does show all values like
a = 2
b = 5
in the expressions view

Format on expressions does not work (it is a bug/missing feature) but 
you can work around it by adding variable as
(void *) a
in expression field, it would show
"(void *)a" = 0x00000002


Jonathan Juniman wrote:
> How do you get the Momentics IDE to show you watchpoints formatted in something other than decimal (like hex, for 
example)? And is there any way to see all the values at once, instead of having to select them one by one?
>
> _______________________________________________
> General
> http://community.qnx.com/sf/go/post9535
>
>   
Re: How to format watchpoints in hex?  
You're right, I meant watch expressions, not watch points. Thanks for the workaround. That's clever.