First, the principle of multi-machine communication
In multi-machine communication, the host must be able to identify each slave. In the 51 series, the SM2 bit of the SCON register can be used. When the serial port sends data in Mode 2 or Mode 3, each frame of information is 11 bits. The 9th bit is a data programmable bit. By setting TB8 to 1 or 0, the address frame and data frame can be distinguished. When this bit is At 1 o'clock, the address frame is sent; when this bit is 0, the data frame is sent.
In the process of multi-machine communication, the host first sends the address of a slave and waits for the reply from the slave. All slaves receive the address frame and compare it with the local address. If they are the same, set SM2 to 0 to receive the data. If different, the current data is discarded and the SM2 bit is unchanged.
Second, multi-machine communication circuit
Here, U1 is the master, U2 is the slave 1, and U3 is the slave 2.
Third, C language program
(1) Host program
#include
#define _SUCC_ 0x0f// Data transfer success #define _ERR_ 0xf0// Data transfer failed unsigned char Table[9]={0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39}; unsigned char Buff[20 ]; //Data buffer unsigned char temp=0xff;sbit KEY1=P1^6;sbit KEY2=P1^7;//unsigned char addr;
//Time delay 1ms function void delay_1ms(unsigned int t){ unsigned int x,y; for(x=t;x>0;x--) for(y=110;y>0;y--);} / / Buffer initialization void Buff_init () {unsigned char i; / / Table data into the buffer for (i = 0; i <9; i + +) { Buff [i] = Table [i]; delay_1ms (100); } }//Serial port initialization function void serial_init(){ TMOD=0x20; // Timer 1 works in mode 2 TH1=0xfd; TL1=0xfd; //Baud rate is 9600 PCON=0; SCON= 0xd0; //The serial port works in mode 3 TR1=1; //Start timer TI=0; RI=0;}//Send data function void SEND_data(unsigned char *Buff){ unsigned char i; unsigned char lenth; unsigned Char check; lenth=strlen(Buff); //Calculate data length check=lenth;
TI=0; //send data length TB8=0; //send data frame SBUF=lenth; while(!TI); TI=0; for(i=0;i TB8=0; //Send the check byte SBUF=check; while(!TI); TI=0; }//Send data to the specified slave address void ADDR_data(unsigned addr){ while(temp!=addr) / / The host waits for the slave to return its address as the reply signal {TI=0; // Send the slave address TB8=1; // Send the address frame SBUF=addr; while(!TI); TI=0; RI=0; while (!RI); temp=SBUF; RI=0; } Temp=_ERR_; //The host waits for a success signal from the slave data while(temp!=_SUCC_) {SEND_data(Buff); RI=0; while(!RI); temp=SBUF; RI=0; }} Void main(){ Buff_init(); serial_init(); while(1) { if(KEY1==0) { delay_1ms(5); if(KEY1==0) { while(!KEY1); ADDR_data(0x01); } } if(KEY2==0) {delay_1ms(5); if(KEY2==0) { while(!KEY2); ADDR_data(0x02); } } }} (2) Slave 1 program #include #define addr 0x01//Slave 1 address #define _SUCC_ 0x0f// Data transfer succeeded #define _ERR_ 0xf0// Data transfer failed unsigned char aa=0xff;//Communication between host and slave flag unsigned char Buff[20 ];//Data buffer / / Serial initialization function void serial_init () { TMOD = 0x20; / / Timer 1 works in mode 2 TH1 = 0xfd; TL1 = 0xfd; / / baud rate is 9600 PCON = 0; SCON = 0xd0; / / serial work In mode 3 TR1=1; //Start timer TI=0; RI=0;}// Receive data function unsigned char RECE_data(unsigned char *Buff){ unsigned char i,temp; unsigned char lenth; unsigned char check; RI=0; //Receive data length while(!RI); if(RB8==1) //If address frame is received, return 0xfe return 0xfe; lenth=SBUF; RI=0; check=lenth; for( i=0;i While(!RI); //receive check bytes if(RB8==1) //receive 0xfe return 0xfe; temp=SBUF if the address frame is received; RI=0; check=temp^check; // The checksum received from the host is compared with the checksum calculated by the host. If(check!=0) // checksum is inconsistent. It indicates that the data is received incorrectly and sends an error signal to the host. The function returns 0xff { TI=0 TB8=0; SBUF=_ERR_; while(!TI); TI=0; return 0xff; } TI=0; //The checksum is consistent, indicating that the data was received correctly, sending a success signal to the host, and the function returns 0x00 TB8= 0; SBUF=_SUCC_; while(!TI); TI=0; return 0;} Void main(){ serial_init(); while(1) { SM2=1; // receive the address frame while(aa!=addr) //the slave waits for the host to request its own address { RI=0; while(!RI) Aa=SBUF; RI=0; } TI = 0; // Once requested, the slave returns its own address as a reply, waiting to receive data TB8 = 0; SBUF = addr; while(!TI); TI = 0; SM2=0; // Receive data frame aa=0xff; // Receive data from slave and save data to data buffer while(aa==0xff) {aa=RECE_data(Buff); } if(aa==0xfe ) continue; P1=Buff[1]; //View received data}} (3) Slave 2 program #include #define addr 0x02//Slave 2 address #define _SUCC_ 0x0f// Data transfer succeeded #define _ERR_ 0xf0//Data transfer failed unsigned char aa=0xff;//Communication between host and slave flag unsigned char Buff[20 ];//Data buffer / / Serial initialization function void serial_init () { TMOD = 0x20; / / Timer 1 works in mode 2 TH1 = 0xfd; TL1 = 0xfd; / / baud rate is 9600 PCON = 0; SCON = 0xd0; / / serial work In mode 3 TR1=1; //Start timer TI=0; RI=0;}// Receive data function unsigned char RECE_data(unsigned char *Buff){ unsigned char i,temp; unsigned char lenth; unsigned char check; RI=0; //Receive data length while(!RI); if(RB8==1) //If address frame is received, return 0xfe return 0xfe; lenth=SBUF; RI=0; check=lenth; for( i=0;i While(!RI); //receive check bytes if(RB8==1) //receive 0xfe return 0xfe; temp=SBUF if the address frame is received; RI=0; check=temp^check; // The checksum received from the host is compared with the checksum calculated by the host. If(check!=0) // checksum is inconsistent. It indicates that the data is received incorrectly and sends an error signal to the host. The function returns 0xff { TI=0 TB8=0; SBUF=_ERR_; while(!TI); TI=0; return 0xff; } TI=0; //The checksum is consistent, indicating that the data was received correctly, sending a success signal to the host, and the function returns 0x00 TB8= 0; SBUF=_SUCC_; while(!TI); TI=0; return 0;} Void main(){ serial_init(); while(1) { SM2=1; // receive the address frame while(aa!=addr) //the slave waits for the host to request its own address { RI=0; while(!RI) Aa=SBUF; RI=0; } TI = 0; // Once requested, the slave returns its own address as a reply, waiting to receive data TB8 = 0; SBUF = addr; while (! TI); TI = 0; SM2=0; // Receive data frame aa=0xff; // Receive data from slave and save data to data buffer while(aa==0xff) {aa=RECE_data(Buff); } if(aa==0xfe ) continue; P1=Buff[2]; //View received data}} VEIIK Vape Pod Kit is so convenient, portable, and small volume, you just need to take them out of your pocket and take a puff, feel the cloud veiik vape pod mod kit,veiik vape pod system,veiik vape pod kit with seed starting system,veiik vape pod kit plus,veiik vape pod kit disposable Ningbo Autrends International Trade Co.,Ltd. , https://www.supervapebar.com
of smoke, and the fragrance of fruit surrounding you. It's so great.
We are the distributor of the VEIIK Vape brand, we sell veiik e cigarette, veiik vape pen, veiik disposable vaporizer, and so on.
We are also China's leading manufacturer and supplier of Disposable Vapes puff bars, disposable vape kit, e-cigarette, vape pens, and e-cigarette kit,
and we specialize in disposable vapes, e-cigarette vape pens, e-cigarette kits, etc.