baykoyu
Newbie level 3
Hi all,
i've a problem :S
My code;
i make a voice call with this code but i can't not control response , RA0 pin is not set. :-(
i've a problem :S
My code;
Code:
unsigned char buff[6];
seri_yaz("ATD05545555555\r");
if(RCIF)
{
for(i=0;i<6;i++)
{
buff[i]=seri_al();
}
RCIF=0;
}
if((buff[2]=='O')&&(buff[3]=='K'))
{
RA0=1; // Led is here
DelayMs(500);
RA0=0;
}
i make a voice call with this code but i can't not control response , RA0 pin is not set. :-(
Last edited by a moderator: