Question 10.3: Write a program for the 8051 to transfer “YES” serially at 9...
Write a program for the 8051 to transfer “YES” serially at 9600 baud, 8-bit data, 1 stop bit, do this continuously
Learn more on how we answer questions.
MOV TMOD,#20H ;timer 1,mode 2(auto reload) AGAIN: MOV A,#”Y” ;transfer “Y” ACALL TRANS ;serial data transfer subroutine CLR TI ;get ready for next byte |