• Baudrate Generation
    Hi, I want to create a Function to approximate a custom Baudrate. The Function depends on two Variables: Baudrate = f(x,y) = (FDV * 40) / (8192 * (BG + 1)), FDV = 1..511, BG = 1..8192 Unfortunately...
  • baudrate for lpc932 microcontroller
    I am using 2.00 mhz crystal as an external oscillator for p89lpc932 microcontroller. how should i calculate 9600 baudrate if divm value is 0x00 & am using independant baudrate generator
  • internal baudrate generator
    Hello everyone, I hope someone can help me out. I'm kind of stuck. The problem: I have a program which works fine when using a timer to generate the baudrate for the uart. I want to change this to use...
  • p89c669 UART1, baudrate 4800
    Hi I need to set baudrate for UART1 for p89c669. I did it like..... void Init_Uart1() { S1STAT = 0x20 ; S1CON = 0x50 ; REN_1 = 1 ; BRGCON = 0X00 ; BRGR1 = 0x07 ; BRGR0 = 0x70 ; BRGCON = 0X01 ;...
  • UART0 Baudrate setting ARM
    Hi We are using Philips LPC2138 ARM Controller in our proto board with 10 MHz external Crystal. We tried to make use of UART0 with baudrate 2400. For that, the code is: #define UART_CLK ...