Hi,
my program involves execution of multi-threads.. In my main(), I've enabled RCIE
my interrupt() looks something like this
void interrupt()
{
/**********************************************
timer part
**********************************************/
if(RCIE_bit == 1 && UART_read() == 'K')
{
TXIE_bit = 1; //enabling transmit bit to transfer data
}
}
and in a function named read() which is called at the start in main(), I've used the following things
void read()
{
if(TXIE_bit == 1) {
while(i < 3) {
snd = EEPROM_read(0x00+i);
}
snd = '\0'
if(UART_data_ready() == 1) {
UART_write_text(snd);
}
}
}
I get an error saying "unresolved extern TFT" , PS : I'm not at all using TFT , so why am I getting this error??
And before that, is this a correct approach???