Problem with Running Python Script in GM862-Python

Just bought GM862 with SparkFun USB eval board and trying to run a python script. I am a newbie in programming GM862 and having problem running any Python script on that module.

After reading some posts on roundsolutions.com I tried not to run Hyperterminal and start the module FIRST on my USB evk, so the module would think that DTR line is low and start the script.

But scripts wouldn’t run. Initially I wrote two scripts: one for sending an email and the second one for sending a SMS message(BTW I could send an email and sms succesfully through AT interface from Hyperterminal). Bothe wouldn’t send or just run - I don’t know.

Then I tried to run this script

import SER

import MOD

while 1:

MOD.sleep(10)

SER.send(‘Test\n’)

which just sends something to ASC0, so I could see in Hyperterminal if script is running. Followed direction that Hyperterminal should not be running. Waited 2 minutes. Didn’t work.

Then I bought basic 50-pin board, provided 3.8v with on/off switch, and connected LED through 3k3 to + and GPIO and following post from Setoy http://www.modem-gsm.de/forum/showthrea … =7252#form

tried to run this:

import MOD,GPIO

GPIO.SetIOdir(3,1,1)

while 1:

GPIO.SetIOValue(3,1)

MOD.sleep(2000)

GPIO.SetIOValue(3,0)

LED woudn’t blink.

Please give me any idea what I could try next. And also does anybody have any issues with USB evk? Would script start on USB evk if I don’t run Hyperterminal as explained by marcus66 in this post:

http://www.modem-gsm.de/forum/showthread.php?id=1711

Would be really greatful for any advice.