In the IAR Embedded Workbench I have a pointer pointing to a buffer in memory. When watching the pointer, I can see the contents of the word it points to. How can I tell the Watch view to list a range of the buffer, from the pointer onwards, for some specified length of elements?
For example, enter the expression:
myPtr[0..2]
will display information equivalent to the three expressions:
myPtr[0]
myPtr[1]
myPtr[2]