Nassar
Newbie level 3

hello every1,
I want to send (digital signal) In the form of "data call" over "GSM network" from pic18f4550 to gsm modem ( kind of: GE865 Evaluation Board )
then the first gsm modem (sender) will send the data to another gsm modem (of the same type) .
now ::
I want to ask about the method of coding the AT commands which used to transfer the digital signal :
Is this correct?
I want to send (digital signal) In the form of "data call" over "GSM network" from pic18f4550 to gsm modem ( kind of: GE865 Evaluation Board )
then the first gsm modem (sender) will send the data to another gsm modem (of the same type) .
now ::
I want to ask about the method of coding the AT commands which used to transfer the digital signal :
Code:
char *COMMAND[] = {"AT","AT+CGDCONT=1,\"IP\",\"static\",\"0.0.0.0\"","AT#CGACT=1,1","AT#sd=1,0,1080,10.16.2.8"};
char *RESPONSES[] = {"OK","OK","OK","CONNECT"};
Is this correct?