P89V51RD2 Interfacing with the UART Serial Communication Description Interfacing the UART Serial Communication with the P89v51rd2 Micro controller, with the baud rate of 9600bps. The Source code and Simulator Model of this Communication is listed Below. Source : #include <reg51.h> unsigned char var; unsigned char var1; void Serial_Init() { TMOD = 0x20; SCON = 0x50; TH1 = 0xFD; TR1 = 1; } void Transmit_Char(unsigned char x) { SBUF = x; while(!TI) { ; } TI = 0; } void Transmit_String(unsigned char *s) { unsigned char i; while((s[i]) != 0) { Transmit_Char(...