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

ARM uVision3

Hi,
i need to know how come 97 is use in VODLL and why
is 15 Mhz instead of 12Mhz...

void init_serial (void){/*Initialize Serial Interface*/
  PINSEL0 = 0x00000005;/* Enable RxD0 and TxD0    */
  U0LCR = 0x83; /* 8 bits, no Parity, 1 Stop bit  */
  U0DLL = 97; /* 9600 Baud Rate @ 15MHz VPB Clock */
  U0LCR = 0x03;/* DLAB = 0                        */

0