Motorola A925/1000 TSY etelpar.h
| Thu, 2005-10-06 18:16 | |
|
Does anyone know much about the radio stack on the Motorolas? I've found etelpar.lib and partsy.tsy which I assume are the equivalents of the generic etal[ab]gsm.h and erigsm.tsy and phonetsy.tsy though I can't see an etelpar.h? The Motorola API does appear to have an extended etelmm so has anyone tried to get MSISDN/IMEI/IMSI and packet context info out of the A925/1000?
chris |
|






Forum posts: 1
Forum posts: 26
 RMobilePhone iPhone;
 RMobilePhone::TMobilePhoneSubscriberId iImsi;
 TRequestStatus iImsiStatus;
 RTelServer::TPhoneInfo info;
 User::LeaveIfError(iServer.Connect());
 User::LeaveIfError(iServer.GetPhoneInfo(0, info));
 User::LeaveIfError(iPhone.Open(iServer, info.iName));
 iPhone.GetSubscriberId(iImsiStatus, iImsi);
 User::WaitForRequest(iImsiStatus);
 if(iImsiStatus == KErrNone)
 {
  apDest->Copy(iImsi);
  r = ETrue;
 }
 iPhone.Close();
 iServer.Close();
code doesnt work if you try to get battery info using RMobilePhone::GetBatteryInfo(), method alway return KErrNotSupported
Any thoughts are greatly appreciated