• 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; }
  • Can't assign values to array I just made.
    I can't seem to access the arrays I have made: 'buff' and 'Time'. I am even unable to initialize them. I am watching the locals and the variables 'i' and 'TimeVar' show changes, but nothing seems to...
  • Can't assign values to array I just made.
    I can't seem to access the arrays I have made: 'buff' and 'Time'. I am even unable to initialize them. I am watching the locals and the variables 'i' and 'TimeVar' show changes, but nothing seems to...
  • 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...