This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Serial communication issue with AT89S52

Hi,
I am trying to perform serial communication with two AT89S52 MCs. Now the problem is that sometime everything works fine, but sometimes not.
------ Hardware Config--------
---> RC reset circuit
---> 11.0592 MHz crystal
---> Mode 1 for serial communication with 9600 baudrate
---> Port 2 as output port at receiver side

Hardware is working fine with simple programs like LED blinking, but when it comes to serial communication, nah ..........behaves randomly....
Any suggestion will be valuable for me.

Parents
  • Ok Mr. Per Westermark, here my codes are,

    ; Written in assembly using keil
    ; Codes for transmitter
    org 00h
    mov tmod,#20h ; timer 1 in auto reload mode
    mov th1,#0fdh ; for baudrate 9600
    mov scon,#50h ; for selection of mode 1 with REN set to 1
    setb tr1
    start: mov sbuf,#0fh ; as leds are connected at port 2 with pins 0,2,4,6
    next: jnb ti,next
    clr ti
    sjmp start
    end

    ;For receiver
    ; UART initialization is similar to previous one
    ;uart is initialized
    ; timer 1 is started
    mov p2,#00h
    start: jnb ri,next
    mov a,sbuf
    mov p2,a
    clr ri
    sjmp start
    end

    And for your kind information as i am transmitting the data continuously, and i am using UART mode for serial communication then why does synchronization matters between Rx and Tx.
    Let me give you some more information
    --> Using wired communication in simplex mode...

    Now i hope that this information is sufficient about my project, if you wanna know something else then no problem, i will try to share as much as i can....

Reply
  • Ok Mr. Per Westermark, here my codes are,

    ; Written in assembly using keil
    ; Codes for transmitter
    org 00h
    mov tmod,#20h ; timer 1 in auto reload mode
    mov th1,#0fdh ; for baudrate 9600
    mov scon,#50h ; for selection of mode 1 with REN set to 1
    setb tr1
    start: mov sbuf,#0fh ; as leds are connected at port 2 with pins 0,2,4,6
    next: jnb ti,next
    clr ti
    sjmp start
    end

    ;For receiver
    ; UART initialization is similar to previous one
    ;uart is initialized
    ; timer 1 is started
    mov p2,#00h
    start: jnb ri,next
    mov a,sbuf
    mov p2,a
    clr ri
    sjmp start
    end

    And for your kind information as i am transmitting the data continuously, and i am using UART mode for serial communication then why does synchronization matters between Rx and Tx.
    Let me give you some more information
    --> Using wired communication in simplex mode...

    Now i hope that this information is sufficient about my project, if you wanna know something else then no problem, i will try to share as much as i can....

Children