• how to transfer data serially on port
    dear sir, i need a code in c that how to transfer data serially on any port using aduc842.
  • how to transfer data serially on port
    dear sir, i need a code in c that how to transfer data serially on any port using aduc842.
  • SCON=0x50; is not working for Serial transfer why
    hi, i tried executing the below program but i am not getting the output in serial window when SCON=0x50; for mode0 and mode2 of SCON it is working but not for mode1 and mode3. #include<reg51.h> void...
  • SCON=0x50; is not working for Serial transfer why
    hi, i tried executing the below program but i am not getting the output in serial window when SCON=0x50; for mode0 and mode2 of SCON it is working but not for mode1 and mode3. #include<reg51.h> void...
  • Problem with Transfering SBUF value
    Hi i m finding a problem in moving SBUF value to someother variable . My Code is serial () interrupt 4 { unsigned int ch[2]; static int i=0; if (RI) { if (i<2) { ch[i]=SBUF; i=i+1; } if...