Controller: TM4C1294NCPDT
IDE: CCS 6.0.1
I am using below code for opening GSM board;
handle = UART_open(UART_GSM, ¶ms);
uart = UART_open(UART_RS232, &uartParams);
and initializing the board parameters by using
handle = UART_open(UART_GSM, ¶ms);
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