I'd like to use the graph-> single time feature in CCS v3.3 to look at a single member from an array of structs for the entire array. If I use the name of the array of structs as the start address and use the struct size as the index offset, I can examine the first member. I've tried several different ways to access the other members, but nothing works short of hard coding the member address (as in typing in the hex value, using &structArray + 1 and similar variations gave me garbage). Is there any other way to accomplish this?