Microcontroller › 8051 › Problem with serial communication › buffer means say for in your
March 11, 2012 at 4:27 pm
#7283
Syed Aameer
Participant
buffer means say for in your program you are using word as variable to store SBUF value..
declare the word as Word[15]..
then in recieviing Program
while(RI==0);
Word[i++]=SBUF;
where i=0;
then diplay the Word value in for loop..
Hope this may help you