I program my IComSat board attached to an Arduino Uno. It works, but the Icomsat module needs to be switched on by hand and I want to do that in software.
I using GSM_GPRS_IDE100_v309.zip
I using:
digitalWrite(GSM_ON, HIGH);
delay(300); /* spec says 200 should suffice */
digitalWrite(GSM_ON, LOW);
which is supposed to work.