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.