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

teach me please...

Hello everyone...
Can anyone teach me how to change the programme as this is my 1st time using it.... sorry...

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