Android porting on ARM based EVK system integrated with GPRS+GSM (UART) based module is up. Able to port RIL layer as well and make calls and SMS using my network provider SIM.
However when i choose (settings->Wireless Networks->Mobile Networks-> APN or search mobile networks) i fail to get any APN settings.
To be specific, i am unable to get localip, remoteip and get my network up on my customized Android Device. Have compiled pppd and chat for Android as well and have made appropriate script files to run pppd and chat, still i get Configuration script file error.
Would appreciate if i can get some tips on approaching the right direction to get the network up using my GPRS+GSM module.
Thx in Advance!
I've done the opposite of what you have done. I did not care about the SMS and voice, I just needed the data connection. Right after you boot, run "logcat -b radio -v time" from ADB. This is the radio log. You should see any attempt and result on setting up a data connection. In the log, you should see a "trySetupData". This is the beginning of the process of establishing an IP link over the GSM link. If you read the logs carefully, you will see all the progress/status and errors. That should give you some hints on what to do next. That is how I made mine work.