This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC3235SF: CC3235SF

Part Number: CC3235SF

Tool/software:

Hi
Im using cc3235sf for uart communication using uart2echo example code. I need to send data with interrupt.
Im unable to configure interrupts.

This My UART configurations.

UART2_Params_init(&uartParams);
uartParams.baudRate=115200;
uartParams.readMode=UART2_Mode_BLOCKING;
uartParams.writeMode=UART2_Mode_BLOCKING;
uartParams.readReturnMode = UART2_ReadReturnMode_FULL;
uartParams.dataLength = UART2_DataLen_8;
uartParams.stopBits = UART2_StopBits_1;
uartParams.parityType = UART2_Parity_NONE;