Hi, I write a code like this
typedef struct _ansLSQ_struct_
{
double level[ADCCHNO];
double bmatrix[ADCCHNO];
double ydata[NUM_POINTS];
double xdata[NUM_POINTS];
} ansLSQ_struct;
ansLSQ_struct *ansLSQ;
main()
{
...
}
When I in debug mode, the expressions window like this:.
I want to see the xdata[n] value, but I can't see.
I don't know what's the'"Error: Memory map prevented reading 0x92834984@Data" mean?
Can anyone help me? Thanks.