Motorola A925/1000 TSY etelpar.h

Login to reply to this topic.
Thu, 2005-10-06 18:16
Joined: 2003-06-18
Forum posts: 11
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

Sun, 2005-10-09 11:43
Joined: 2005-10-08
Forum posts: 1
Re: Motorola A925/1000 TSY etelpar.h
hi iam new and i have motorola a925 the problem is i do not have any software for it .can any one help with  handy day or tracker or anything
Wed, 2005-11-16 17:23
Joined: 2004-07-14
Forum posts: 26
Re: Motorola A925/1000 TSY etelpar.h
Here is a code, its works with SE P900. havent tried it with Moto A1000

Code:
  RTelServer iServer;
  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
  • Login to reply to this topic.