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

ADUC842/843 BAUD RATE & SUPPLY

I am using ADUC842/ADUC843 controller.Baud rate i need is 460800.

How to achieve this baud rate?

Also i want to know the difference between ADUC842/ADUC843 5V AND ADUC842/ADUC843 3V ....

Regards,
Mayuri

Parents
  • The ADuC841 and ADuC842 are identical with the exception of
    the clock oscillator circuit. The ADuC841 is clocked directly
    from an external crystal up to 20 MHz whereas the ADuC842
    uses a 32 kHz crystal with an on-chip PLL generating a
    programmable core clock up to 16.78 MHz

    With these frame in mind there is the option to use Timer 3 Generated Baud Rates.
    Using the internal 32768Hz clock crystal PLL locked x512 gives Fcore as 16.777216MHz
    Setting up the appropriate T3 for baud rate generator with

    DIV = 1 (rounded down)
    T3FD = 9 (nearest integer)
    


    the achieved baud rate is 459649 bits per second,
    as of -0.25% deviation error from the desired 460800.

Reply
  • The ADuC841 and ADuC842 are identical with the exception of
    the clock oscillator circuit. The ADuC841 is clocked directly
    from an external crystal up to 20 MHz whereas the ADuC842
    uses a 32 kHz crystal with an on-chip PLL generating a
    programmable core clock up to 16.78 MHz

    With these frame in mind there is the option to use Timer 3 Generated Baud Rates.
    Using the internal 32768Hz clock crystal PLL locked x512 gives Fcore as 16.777216MHz
    Setting up the appropriate T3 for baud rate generator with

    DIV = 1 (rounded down)
    T3FD = 9 (nearest integer)
    


    the achieved baud rate is 459649 bits per second,
    as of -0.25% deviation error from the desired 460800.

Children