We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
If I have a local variable, how do I tell in uVision what memory location it is in? I need to monitor that location even when the variable is out of scope, because that location is not being popped off the stack properly. i.e. I have a bug in the code. Thanks.
Sutton
the & operator gives you the address unless it is a register variable.
So just use &variable.