PDA

View Full Version : sending string to module GSM with character ""



volcane
- 2nd May 2010, 01:28
Hi!

I'm using the modules GSM Telit GM862 and SIMCOM SIM300C

I send the command to use missed calls list (ME)
these are the strings to be sent to the modules:
for GM 862 is AT+CPBS = MC
for SIM300C is AT+CPBS ="MC"

for GM862 i have no problem using HSEROUT ["AT+CPBS=MC",13]
if i write for SIM300C HSEROUT ["AT+CPBS="MC"", 13] i get an error during compilation, how can i send the character ""

mackrackit
- 2nd May 2010, 02:26
The double "" problem can be solved by using $22 for one of the " .
Try


["AT+CPBS=,$22,MC,$22,", 13]