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