This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Error (col1): unknown or ambiguous symbol. Test

Hello everyone,

 

I have a little bit trouble with my debugger and I hope someone here could help me.

I have made a struct variable like this:

 

struct Zeil
{
  addr_t Addr;
  int Signal;

};

struct Zeil Sens[NUMBER_OF_DEVICES],Test[NUMBER_OF_DEVICES];

 

When I want to look at both arrays in the Watch Window I can see "Sens" perfectly fine but in Value column for "Test" stands "Error (col1): unknown or ambiguous symbol. Test". I need to see whats happening to both in order to keep on working and I quite dont understand where the problem is with my code.

 

Thanks in advance

Rick