• I can't read the SBUF. The local variable don't receive the value of the SBUF. Thank you very much f
    void getSBUF() interrupt 4 using 1 { char temp = 1; temp = SBUF; RI = 0; }
  • I can't read the SBUF. The local variable don't receive the value of the SBUF. Thank you very much f
    void getSBUF() interrupt 4 using 1 { char temp = 1; temp = SBUF; RI = 0; }
  • Not storing the data from SBUF
    Hi MCU is recieving the data from other MCU& i am unable to store the data using SBUF..so pls help me.. only the last byte is receiving again & again... thanks here my source code p = 0;...
  • Not storing the data from SBUF
    Hi MCU is recieving the data from other MCU& i am unable to store the data using SBUF..so pls help me.. only the last byte is receiving again & again... thanks here my source code p = 0;...
  • can't read sbuf on debug
    Hi, how can I read SBUF while debugging? R_serial () interrupt 4 { if(RI) { serialR = SBUF; RI=0; CompDataRx[count]=serialR; count++; } else TI = 0; } when I put any value in SBUF...