sms information

Hello everybody,

I have a sample project but i have a problem.

I have the following code:

case WM_AT_UNSOLICITED :
if ( STR_EQUAL ( strReceived, “+CMTI:” ) )
{
wm_osDebugTrace ( 1, “Embedded : READ SMS” );
eAtCmdRsp = AT_CMD_WIND_RSP;
wm_strcpy ( strBuffer, “AT+CMGR=1\r” );
SND_CMD ( strBuffer );
}
break;

When i receive the first sms i can read it with the above command.
My problem is that the Target Monitoring tool shows me only the Text from the sms and the Terminal Emulator shows me the Sender,date and time of the sms.

How can i get all the information of the sms in the Target Monitoring Tool?

I’d appreciate your help.

Hi everybody,
Does anyone know which function get all the string of an incoming sms in C++ using WM?

For example, in the Hyper Terminal of Windows i get the following response when an sms is received:

+CMGR:“REC UNREAD”,“6949791644”,
“06/12/04,15:00:00+00”,
HELLO IT’S ME
OK

But in the Target Monitoring Tool i get only the text:
HELLO IT’S ME

Why?

How can i get it all the sms in the Target Monitoring Tool?