Accessing Win Mobile phone's Cell Tower info

W

William LaMartin

At http://www.devx.com/wireless/Article/39709/1954 there is an interesting
example of a program in C# for a Windows Mobile phone that should return the
current cell tower information for the device.

Has anyone tried this and been able to retrieve that information. The
code works fine for me until the line

// use RIL to get cell tower info with the RIL handle just created
hRes = RIL_GetCellTowerInfo(hRil);

in Ril.cs.

There the program hangs and never returns the information.

My phone is an HTC 6800 running Win Mobile 6.1.

Additionally, does anyone know if the above project works on some phone but
not all?

Thanks
 
S

sachin jesukaran

Athttp://www.devx.com/wireless/Article/39709/1954there is an interesting
example of a program in C# for a Windows Mobile phone that should return the
current cell tower information for the device.

Has anyone tried this and been able to retrieve that information.    The
code works fine for me until  the line

// use RIL to get cell tower info with the RIL handle just created
            hRes = RIL_GetCellTowerInfo(hRil);

in Ril.cs.

There the program hangs and never returns the information.

My phone is an HTC 6800 running Win Mobile 6.1.

Additionally, does anyone know if the above project works on some phone but
not all?

Thanks

try this one
http://dalelane.co.uk/blog/post-images/080312-rilcode.cs.txt

just to inform you that this informations retreived ny
RIL_GETCELLTOWERINFO are OEM specific

thankyou
 
W

William LaMartin

The code at http://dalelane.co.uk/blog/post-images/080312-rilcode.cs.txt is
the source for the code at http://www.devx.com/wireless/Article/39709/1954,
which I used, so the same thing happens--no information is returned from the
phone regarding the cell tower.

Perhaps my phone will must not allow the retrieval of such information.




Athttp://www.devx.com/wireless/Article/39709/1954there is an interesting
example of a program in C# for a Windows Mobile phone that should return
the
current cell tower information for the device.

Has anyone tried this and been able to retrieve that information. The
code works fine for me until the line

// use RIL to get cell tower info with the RIL handle just created
hRes = RIL_GetCellTowerInfo(hRil);

in Ril.cs.

There the program hangs and never returns the information.

My phone is an HTC 6800 running Win Mobile 6.1.

Additionally, does anyone know if the above project works on some phone
but
not all?

Thanks

try this one
http://dalelane.co.uk/blog/post-images/080312-rilcode.cs.txt

just to inform you that this informations retreived ny
RIL_GETCELLTOWERINFO are OEM specific

thankyou
 
P

Peter Foot

As already mentioned this function is OEM specific so not all devices will
return information.

Regards,

Peter

--
Peter Foot
Microsoft Device Application Development MVP
peterfoot.net | appamundi.com | inthehand.com
APPA Mundi Ltd - software solutions for a mobile world
In The Hand Ltd - .NET Components for Mobility
 
Joined
Jun 20, 2012
Messages
1
Reaction score
0
At http://www.devx.com/wireless/Article/39709/1954 there is an interesting
example of a program in C# for a Windows Mobile phone that should return the
current cell tower information for the device.

Has anyone tried this and been able to retrieve that information. The
code works fine for me until the line

// use RIL to get cell tower info with the RIL handle just created
hRes = RIL_GetCellTowerInfo(hRil);

in Ril.cs.

There the program hangs and never returns the information.

My phone is an HTC 6800 running Win Mobile 6.1.

Additionally, does anyone know if the above project works on some phone but
not all?

Thanks


can any one help wher itis RIL_GetCellTowerInfo(hRil);
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top