I have an Analog Devices ADuC834 eval board and currently have the UART configured for 9600 baud with the following code: T3CON = 0x82; T3FD = 0x12; SCON = 0x52; I am interested in configuring the UART for 115200 baud. I have been able to find examples of doing this with the ADuC832 but not for the ADuC834. The 9600 baud configuration is different for the ADuC832 so I dont think that the same settings would work. The settings for 9600 and 115200 for the ADuC832 are as follows: /*9600*/ T3CON = 0x85; T3FD = 0x2D; SCON = 0x52; /*115200*/ T3CON = 0x82; T3FD = 0x09; SCON = 0x52; If anyone knows the correct settings to run the ADuC834 at 115200 baud (if it has the capability) that would be great. Thanks. -Nathan