Hi.
I can send sms by sim900 but when sms arrive in my cellphone I see hex of that data.
for exmaple when I send "TEST" I got this:
%u5445%u5354%u0d0a
anybody knows where is my problem :( ?
this is my code:
bool SendSms(char* MobileNumber,char* Msg) { SendCommandToGPRS(CMGFCode,true); GetRespGPRS("AT+CMGF","OK",1); SendCommandToGPRS(CSCSCode,true); if(GetRespGPRS("AT+CSCS","OK",2)) { SendCommandToGPRS(CMGSCode,true); SendCommandToGPRS(FMobileNumCode,true); SendCommandToGPRS(MobileNumber,false); SendCommandToGPRS("\"\r\n",false); if(GetRespGPRS("AT+CMGS",">",5)) { SendCommandToGPRS(Msg,false); SendCommandToGPRS("\r\n",false); SendCharToGPRS(0x1A); GetRespGPRS("+CMGS:","OK",5); return true; } } return false; }