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.

Extracting text from SMS(PDU format)

Other Parts Discussed in Thread: CC1010

 Extracting text from SMS(PDU format GSM t237 mobil phone)to TX FiFo payload data cc1010(already to be transmitted again but at 868mhz cc1010 protocol.And getting payload data from rx fifo to built a text(usart sms PDU format)
I have an example PIC MCU
pseudo code  AT Cmd
#use rs232(baud=9600, xmit=PIN_C6, rcv=PIN_C7, PARITY=N, BITS= 8) //port config

void main()
{
delay_ms(5000); //
printf("AT+CMGF=1\r\n"); //text mode configuration
delay_ms(500);
printf("AT+CMGS=\"0123456789\"\r\n"); //recipient phone number
delay_ms(500); // the "ok" back from the mobil t237
printf("text");putc(26); //ascii(26)=(ctrl+z) send a message
}
on 8051 SoC??