When I debug the following code compiled with WinAVR 20050214 I cannot watch variables of type bool. A "unknown type" error is shown.
I could use char instead of bool except that using bool generates slightly more efficient code and I'd like it to be watchable.
Can anyone help ? (Hopefully someone from the Atmel dev team will sympathise and include support in the next release)
//Boolean Test Code #includebool bMyFlag; char A_Global_char; void main (void) { if (bMyFlag) A_Global_char = 0; }
Nigel Winterbottom