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: Interfacing SIM800L with tm4c1294xl and send data on a server

Part Number: TM4C1294NCPDT
Other Parts Discussed in Thread: EK-TM4C1294XL

I am working on a ultrasonic sensor and SIM800L GSM module and i want to send a sensor data to a server using AT command but i don't  know how to start writing a code so please suggest me.

I don"t know how to write AT command in code composer studio.please help me 

  • The SIM800L has a UART interface. Select one of the UARTs on the TM4C1294 device to connect to the SIM800L. Look at the example project:
    C:\ti\TivaWare_C_Series-2.1.4.178\examples\boards\ek-tm4c1294xl\hello
    Note that this example is using UART0. If you are using an EK-TM4C1294XL Launchpad, UART0 is connected to a virtual com port. You should pick UART1 or UART2 instead. If you need to use multiple UARTs on the device, you may find it better to call the TivaWare functions directly instead of using the uartstdio.c utilities. Look at C:\ti\TivaWare_C_Series-2.1.4.178\examples\peripherals\uart\uart_polled.c for a simple example.