Using the watch or memory debug windows, does anyone know of a way to view a pointer as if it were an array?
i.e.
uint8_t myArray[4]; uint8_t* myPtr = myArray;
Normally, you'll only be able to see myArray[0] when viewing myPtr in the debugger. I'd like to view the entire array. Visual Studio offers a way of essentially casting the pointer inside their debug window into an array - is there anything similar that's available in uVision?
Here's the example of how to do it in VS: blogs.msdn.microsoft.com/.../
thanks!