View Single Post
Old 29-Mar-2007, 01:54 AM   #2 (permalink)
Iphone
Fixed Error!
 
Iphone's Avatar

Posts: 4,202
Join Date: Mar 2007
Rep Power: 6 Iphone is on a distinguished road

IM:
Default Re: Using Java to Make a GPRS Connection with a Wavecom Fasttrack (GPRS) Modem

In the TC45, we simply do this :

// Setup Gprs
String response;
response = ata.send("AT^SJNET=GPRS," + gprsPoint + "," + gprsUser + "," + gprsPass + "\r");

if (response.indexOf("OK") >= 0)
{
System.out.println("GPRS Setup : OK " + gprsPoint);
}


Easy!
Iphone is offline   Reply With Quote