Hi guys,
In my Application_Handler (), I cannot use DRAW_DisplayTemp() without generating a linker error: undefined reference to `DRAW_DisplayTemp' .
I can however use with success other functions belonging to the draw.c file like:
DRAW_DisplayTime (60,15);
DRAW_DisplayVbat (60,0);
I'm a bit puzzled here as why the linker failed for DRAW_DisplayTemp() while it does not choke at DRAW_DisplayVbat() for instance. After all, these 3 functions are in the same file.
Any idea?
Thank you