i have had some hitch when i writed program about multiprocessor communication - program of master transmit 2 byte (address byte ,data byte ) and program of slave is received data byte but it can't,pleasecheck for me , if it's false please correct or show me how to do ? thanks very much !!! ..................... ..................... static data unsigned char databyte=0x40; static data unsigned char address=0x0F; static data unsigned char datax; static void com_isr (void)interrupt 4 using 2 { if (TI==1) { TI=0; SBUF=datax; } } void main(void) { EA=0; SM0=1; //mode 3 SM1=1; SM2=1; // mode multiprocessor REN=1; PCON &=0x7F; TMOD=0x20; //... TH1=0xF3; //baud rate 2400 TR1=1; //.... TI=1; datax=address; TB8=1; EA=1; // enable interrupt ES=1; _nop_(); _nop_(); _nop_(); datax=databyte; TB8=0; TI=1; EA=0; ES=0; // disable interrup because only transmit two byte while(1) {} } .................................... -Program of slave is received databyte (with address is correct): ........................... static data unsigned char datax; static data unsigned char dulieu; static data unsigned char address; static void com_isr(void) interrupt 4 using 2 { if(RB8==1) { if (RI==1) { RI=0; address=SBUF; //receive address (the first) P2=address; //output port2 to test } if (address==0x0F) // comprare address { SM2=0; } else { EA=0; //disabled serial port interrrupt ES=0; } } else { if(RI==1) { RI=0; databyte=SBUF; // receive databyte (the second) P1=dulieu; // output port1 to test SM2=1; } } } void main (void) { EA=0; SM0=1; // mode 3 ,uart 9 bit SM1=1; //.... SM2=1; // multiprocessor REN=1; RI=0; PCON &=0x7F; TMOD=0x20; // baudrate 2400 TH1=0xF3; TR1=1; ES=1; EA=1; while (1) {} }
You code would be a whole lot easier to read if you followed the instructions, and placed it between and tags!
That would be "<pre>" and "</pre>" tags. Those will preserve the indentation in code and make it easier to read.
Hmm... They showed up literally in the preview...
i have had some hitch when i writed program about multiprocessor communication - program of master transmit 2 byte (address byte ,data byte ) and program of slave is received data byte but it can't run,please check for me , if it's false please correct or show me how to do ? thanks very much !!! ..................... .....................
static data unsigned char databyte=0x40; static data unsigned char address=0x0F; static data unsigned char datax; static void com_isr (void)interrupt 4 using 2 { if (TI==1) { TI=0; SBUF=datax; } } void main(void) { EA=0; SM0=1; //mode 3 SM1=1; SM2=1; // mode multiprocessor REN=1; PCON &=0x7F; TMOD=0x20; //... TH1=0xF3; //baud rate 2400 TR1=1; //.... TI=1; datax=address; TB8=1; EA=1; // enable interrupt ES=1; _nop_(); _nop_(); _nop_(); datax=databyte; TB8=0; TI=1; EA=0; ES=0; // disable interrup while(1) {} } .................................... -Program of slave is received databyte (with address is correct): ........................... static data unsigned char datax; static data unsigned char databyte; static data unsigned char address; static void com_isr(void) interrupt 4 using 2 { if(RB8==1) { if (RI==1) { RI=0; address=SBUF; //receive address //(the first) P2=address; //output port2 to test } if (address==0x0F) // comprare address { SM2=0; } else { EA=0; //disabled serial port ES=0; //interrrupt } } else { if(RI==1) { RI=0; databyte=SBUF; // receive databyte // (the second) P1=databyte; // output port1 to test SM2=1; } } } void main (void) { EA=0; SM0=1; // mode 3 ,uart 9 bit SM1=1; //.... SM2=1; // multiprocessor REN=1; RI=0; PCON &=0x7F; TMOD=0x20; // baudrate 2400 TH1=0xF3; TR1=1; ES=1; EA=1; while (1) {} }
Ah - that's better!! Please describe more clearly exactly what is & is not happening * is the master actually transmitting? * is the master correctly setting the 9th bit? * is the receiver receiving anything at all? * is the receiver ISR ever called? etc, etc... One thing: In your receiver ISR, you are checking RB8 before RI - that's the wrong order.
Did you read Intel Application Note AP-410, "Enhanced Serial Port on the 83C51FA" http://www.intel.com/design/mcs51/applnots/270490.htm, as I suggested in your previous thread: http://www.keil.com/forum/docs/thread2849.asp
I have found error ? because i have checked RB8 before RI ,I have repaired but now i have a question : - I want transmit data from slave to master .Have the slave to multiprocessor mode or other mode ? when two slave send data how to do ? please help me ! thanks...
I want transmit data from slave to master .Have the slave to multiprocessor mode or other mode ? when two slave send data how to do ? In a round robin (or priority if required) have the master ask the slaves "do you have data". If the slave respond "yes" the master will change to receive and receive data till a "done" message is received from the slave. In some designs it is better to allow the slaves to send opnly one record when responding "yes". Erik
View all questions in Keil forum