array locked

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
lock attach
Attachments are accessible only for community members.
Anonymous
Not applicable

I created an array, for debugging purposes, to fill with values from a function.

   

However, when I break the debugger, the array looks locked, and I can't see the values.  

   

I can see other arrays, where I get a + symbol to expand the array to see the elements.  why not this one?

   

I attached sample of what my array looks like, the one I can't expand is DebugArray[].

   

I'm using a PRoC CYBLE -022001-00 module, and PSoC creator 3.3 CP1

   

 

   

Any thoughts?  Thanks

0 Likes
2 Replies
Anonymous
Not applicable

I may have found my own answer.  I had this array defined in another file, and included in this file.

   

I redefined it in the file I was working in, and now I can expand it to see the values.

0 Likes
Bob_Marlowe
Level 10
Level 10
First like given 50 questions asked 10 questions asked

At the place where the debugger stopped the dimension of the array was unknown, so no way to display its contents. You may inspect the memory locations at the given address.

   

 

   

Bob

0 Likes