我在更改 lpc1768 上的 uart 波特率的方式上遇到了一些问题。
要初始化和配置我的 uart,我使用以下代码,它适用于 9600 波特或 38400。
/* RxD0 is P0.3 and TxD0 is P0.2 */
LPC_PINCON->PINSEL0 &= ~(0x03<<4); // Reset P0.2 = GPIO
LPC_PINCON->PINSEL0 |= (0x01<<4); // Config P0.2 = TxD0
LPC_PINCON->PINSEL0 &= ~(0x03<<6); // Reset P0.3 = GPIO
LPC_PINCON->PINSEL0 |= (0x01<<6); // Config P0.3 = RxD0
LPC_UART0->LCR = 0x87; //8bits, no parity, 2 stop bits
switch (baudrate)
{
default :
case 9600 :
LPC_UART0->DLM = 0x00; //calculated with datasheet
LPC_UART0->DLL = 0x4E;
LPC_UART0->FDR = 0x21;
break;
case 38400 :
LPC_UART0->DLM = 0x00; //calculated with datasheet
LPC_UART0->DLL = 0x14;
LPC_UART0->FDR = 0xF7;
}
LPC_UART0->LCR = 0x07;//0x03; /* DLAB = 0 */
LPC_UART0->FCR = 0x07; /* Enable and reset TX and RX FIFO. */
NVIC_EnableIRQ(UART0_IRQn);
LPC_UART0->IER = IER_RBR | IER_THRE | IER_RLS; /* Enable UART0 interrupt */
但是要将波特率从 9600 更改为 38400,我尝试将 DLM/DLL 和 FDR 寄存器更改为适当的值(与上面的代码相同)。但这不起作用......(波特率未定义)。
我的 pclk 是 18MHz
只改变这三个寄存器是不够的?我错了吗 ?