• Baud rate for MCBX51 is getting doubled
    HI All, Can anyone help me in knowing what is the frequncy of operation of 8051 controller in a MCBx51 Board? Is it 12Mhz or 24 Mhz? B'coz when I am configuring the timer value for 9600 baud, with...
  • Baud rate for MCBX51 is getting doubled
    HI All, Can anyone help me in knowing what is the frequncy of operation of 8051 controller in a MCBx51 Board? Is it 12Mhz or 24 Mhz? B'coz when I am configuring the timer value for 9600 baud, with...
  • uart receive data incorrect above 9600 baud
    Is anyone successfully receiving UART data using a UART configured with greater than 9650 Baud? I have a Keil development board. I have interrupts enabled. I'm looking forward to hearing...
  • uart receive data incorrect above 9600 baud
    Is anyone successfully receiving UART data using a UART configured with greater than 9650 Baud? I have a Keil development board. I have interrupts enabled. I'm looking forward to hearing...
  • Baud Rate
    Specification for AT89C51 Baud rate - 9600 Clock - 12MHz SMOD - 1 TH1 - 0xF9 so is my code correct? Code: void serial_send() { SCON=0x50; TMOD=0x20; TH1=0xF9; TR1=1; TI=1; } Confusedman...