This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

uVision Debugger displaying arrays of Structures

I'm using uVision2 V2.40A.

Please look the following example:

struct structPeriod
{
	int From;
	int To;
	int x[4];
};

struct structConfig
{
	struct structPeriod  Periods[5];
	int x;
	int y;
};

struct structConfig  Config;


void main()
{
       while(1)
		;
}

In the Watchwindow of the Simulator i can see
the array of structures with a '+' sign. But Clicking on the '+' to display the structure,
nothing changes.

Is this a bug or is it a mistake by me?

Thanks for your reply.
Eugen

0