• about serial communication baud rate
    If we set different baud rates in an master-slave system,can the system work correctly?!thank you!
  • about serial communication baud rate
    If we set different baud rates in an master-slave system,can the system work correctly?!thank you!
  • ARM: CAN1 baud rate setting
    I have some problems with configuration of CAN1 baud rate setting in LPC2378. This is the code section that configure CAN1 controller. Mind that CPU clock frequency CLK is 72 MHz . void start_an_network...
  • ARM: CAN1 baud rate setting
    I have some problems with configuration of CAN1 baud rate setting in LPC2378. This is the code section that configure CAN1 controller. Mind that CPU clock frequency CLK is 72 MHz . void start_an_network...
  • 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...