This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

program for interfac modem with micros

void main ()
{
int j,k,l,m;
//char g_strlcdline[15]="ATD0800800800";
char name [6];
char temp[6];
char s1[10],s2[10];
unsigned char crlf[3];

crlf[0] = 0x0d ;
crlf[1] = 0x0a ;
crlf[2] = 0x00 ;





serial_init();

send_serial("ATD0800800800");
send_serial(crlf);

0