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: identifier not found - Problem using debugger



Hi Folks,


I'm sure this is an easy one to answer but how do you get the Expressions window to show the value of a variable?  Here's a piece of my code:

I get the error with result, temp1 and temp2. There must be a secret handshake that I haven't learned yet to get the debugger to display these values.

float eepromReadFloat(I2C_Handle i2cHandle, uint_least8_t addr)
{
    float result;
    uint_least32_t temp1, temp2
    temp1 = i2cReadByte(i2cHandle, addr+3);

Any ideas?

Thanks,

Richard Cooke