In compiling a project that includes the emWin graphic library, I am getting this error:
undefined first referenced
symbol in file
--------- ----------------
Write_Data_16 ./emWin/Config/LCDConf.obj
Write_Index_Reg_16 ./emWin/Config/LCDConf.obj
This is the only error, and remain even after a "Clean Project". In LCDConf.c is the line "include "lcd_driver.h". In lcd_driver.h is the line "extern void Write_Data_16( u16 Data );". in lcd_driver.cc is the function:
void Write_Data_16( u16 Data ) {
LCD_Data_Sel(); // Writing to Data register.
LcdWrite16( Data ); // Data out.
LCD_WR_True(); // Strobe it in.
for(int i=0; i<10; i++) { }
LCD_WR_False();
}
Help. Thanks
Doug