In the IAR Embedded Workbench, I have a pointer pointing to a buffer in memory. When viewing a pointer, I see the contents of the word that it points to. How can I show in the Watch view a list of the buffer range, starting with the pointer, for a specific length of elements?
For example, enter the expression:
myPtr[0..2]
will display information equivalent to three expressions:
myPtr[0] myPtr[1] myPtr[2]
source share