Hey everyone,
I'm pretty new to the world of Segger but so far I'm really happy with it. There's one problem I encounter when using Segger's Ozone tool. I'd like to graph the value of a local variable but Ozone is telling me the following:
When I try to add it to the "Watched Data", the "Location" tab tells me
I double checked all the operands, I'm just using ++, % and logical comparison ==, all allowed according to UM08025, p. 145.
Thank you very much in advance!
Tom
I'm pretty new to the world of Segger but so far I'm really happy with it. There's one problem I encounter when using Segger's Ozone tool. I'd like to graph the value of a local variable but Ozone is telling me the following:
When I try to add it to the "Watched Data", the "Location" tab tells me
<outofscope>
.I double checked all the operands, I'm just using ++, % and logical comparison ==, all allowed according to UM08025, p. 145.
cntr
is basically just a counter that resets after x iterations. This variable is local, declared and defined inside a FreeRTOS Task Function (of course outside the while(1) loop). In fact all other variables declared and defined inside this function/task are not reachable by Ozone with the same error message. What am I doing wrong?Thank you very much in advance!
Tom