Hi
In the previous project, I use LPC2364's USART with 2.5Mbps. It works fine.
I need move the project with LPC54616 microcontroller.
I reference the USART demo and found the BOARD_InitDebugConsole() in the board.c.
Here I speed up the baud rate and verify by the oscilloscope.
status_t BOARD_InitDebugConsole(void)
{
status_t result;
/* attach 12 MHz clock to FLEXCOMM0 (debug console) */
CLOCK_AttachClk(BOARD_DEBUG_UART_CLK_ATTACH);
RESET_PeripheralReset(BOARD_DEBUG_UART_RST);
result = DbgConsole_Init(BOARD_DEBUG_UART_INSTANCE, 1200000U, BOARD_DEBUG_UART_TYPE, BOARD_DEBUG_UART_CLK_FREQ);
assert(kStatus_Success == result);
return result;
}

When I speed up to 1.2Mbps, it works fine. But I raised up to 1.3Mbps, I see nothing in the oscilloscope.
Do I need to use another clock source? or other parameters?
Any suggestions are welcome. I will try and post the result.