how Xbee 52B (wifi mode) interface with TIVA MCU using AT commends

hi
i am using Xbee wifi module interface with tiva C using uart.
i am new in for AT command and API
i am using AT commands.i send “+++” first n got “OK” response. now how i configure the Xbee for 115200 baudrate and how i send and receive data from Xbee using at commands?

regards
micky

To set the Baud rate, you issue an ATBD7, and a ATWR to write it to flash.

As for sending data, you simply issue the data to the radios UART and the radio will send the data to the IP address and port number specified in the AT commands.

Thanks for reply

my problem is

  1. if i dont have any IP address of URL but i want to connect. that time i would like to resolve DNS. so how i resolved it

2.i write code for configuration wifi module

    UARTSend("+++\r", 3);
SysCtlDelay((g_ui32SysClock));

if(flag_set==1){

		UARTSend("ATIP 1

",8);
SysCtlDelay((g_ui32SysClock)/100);
UARTSend("ATAC
",8);
SysCtlDelay((g_ui32SysClock)/100);
UARTSend("ATAH 0
",8);
SysCtlDelay((g_ui32SysClock)/100);
UARTSend("ATAC
",8);
SysCtlDelay((g_ui32SysClock)/100);
UARTSend("ATID abcdef Link
",19);
SysCtlDelay((g_ui32SysClock)/100);
UARTSend("ATAC
",8);
SysCtlDelay((g_ui32SysClock)/100);

		UARTSend("ATEE 1

",8);
SysCtlDelay((g_ui32SysClock)/100);
UARTSend("ATAC
",8);
SysCtlDelay((g_ui32SysClock)/100);
UARTSend("ATPK abcdef123
",17);
SysCtlDelay((g_ui32SysClock)/100);
UARTSend("ATAC
",8);
SysCtlDelay((g_ui32SysClock)/100);
flag_set=0;
}

	UARTSend("ATIP

",8);
SysCtlDelay((g_ui32SysClock)/100);
UARTSend("ATID
",8);
SysCtlDelay((g_ui32SysClock)/100);
UARTSend("ATMA
",8);
SysCtlDelay((g_ui32SysClock)/100);
UARTSend("ATAH
",8);
SysCtlDelay((g_ui32SysClock)/100);
UARTSend("ATEE
",8);
SysCtlDelay((g_ui32SysClock)/100);
UARTSend("ATMY
",8);
SysCtlDelay((g_ui32SysClock)/100);

	UARTSend("ATAI

",8);
SysCtlDelay((g_ui32SysClock)/100);

	as result i got each an every response of AT command

but ATAI gives me response “40” which is not mentioned in datasheet.

response is

ATIP- 1 -TCP
ATID- abcdef Link
ATMA- 0- DHCP
ATAH- 0-IBSS Joiner
ATEE-1- WPA
ATMY-0.0.0.0
ATAI-40

Please help me to solve this problem

micky