Tool/software:
Hi Team
My customer is using CC3501ENJARSHR to build their own board.
And the board is now functioning normally. However, he observed an issue when both UART1 and UART0 are enabled simultaneously—the system crashes.
Details:
- UART1: PIN41 & PIN42
- UART0: PIN32 & PIN33
Config:
/* Create a UART where the default read and write mode is BLOCKING */
UART2_Params_init(&uartParams);
uartParams.baudRate = 420000;
uart = UART2_open(CONFIG_UART2_0, &uartParams);
if (uart == NULL)
{
/* UART2_open() failed */
while (1) {}
}
/* Create a UART where the default read and write mode is BLOCKING */
UART2_Params_init(&uartParams0);
uartParams0.baudRate = 420000;
uart0 = UART2_open(CONFIG_UART2_1, &uartParams0);
if (uart0 == NULL)
{
/* UART2_open() failed */
while (1) {}
}
Please let us know if you need additional logs or testing details to help analyze this behavior.
Thank you for your support.