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.

TM4C1294NCPDT program crashing, when UART is initialized twice?

Other Parts Discussed in Thread: TM4C1294NCPDT

Controller: TM4C1294NCPDT

IDE: CCS 6.0.1

I am using below code for opening GSM board;

handle = UART_open(UART_GSM, &params);

uart = UART_open(UART_RS232, &uartParams);

and initializing the board parameters by using 

handle = UART_open(UART_GSM, &params);

similarly I am doing for UART port:

uart = UART_open(UART_RS232, &uartParams);// uart is the handle parameter I have declared

But when I am doing them consecutively, the program is hanging in between.

My primary requirement is to verify the working of GSM port by sending AT command and displaying the Status on Serial Port.

Thank you,

Chaitanya 

chaitanya19924b3@gmail.com