AGPS Help - Touch Pro, Fuze General

I was trying to look around but could not find an answer.
I am on the Sprint TP stock ROM.
The device comes with AGPS disabled. It can be activated by downloading cabs from this forum as well as registry hacks and Advanced config tool from XDA forum.
But can I activate it from the stock software, without any hack or downloads? The devices I used before (BB, iphone) would enable AGPS by default, so that even if there is no satellite signal (indoors), you can still get approximate location from the cell towers.
I cannot figure it out for the HTC. Why do they disable it by default?
Any ideas?
Thanks.

Related

GPS Settings HTC S730

hi all. i am using an HTC S730. this unit has the same qualcomm chip as the HTC TytnII / Cingular tilt 8925. i got the gps working on my unit using "smart gps" ... however, i have been trying to get the best performance possible out of the unit. one of the things i want to change is the time between gps "fixes" at this point, the unit seems to only update the positioning info about once a minute. i looked in the registry and found under h_key_local_machine /software / htc / SUPL AGPS a setting for "timebetweenfixes" and a value of 1. i am wondering if changing this value will let m machine update the position for instance, every 15 seconds? anyone have any suggestions? also, has anyone used the "HTCGPSTool"? seems to show a gps com port 4 and baud rate of 57600 !! that's fast, (smartgps only has a highest setting of 38600). but when i use the HTCGPSTool i get a buffer overrun error after about a minute. anyone give me pointers on using it? seems i need to use either HTCGPSTool or SmartGPS before using google maps to start the gps receiver and then wait for "gps running" before i turn on the location tracker in either google maps or WindowsLive" anyway, help would be most welcome!!
http://smartmobilegadgets.wordpress.com/2007/10/28/htc-s730-wings-come-with-gps-confirmed/
yeha, i know my unit has gps, and it works. however, it only works if i start either "GPS Test" or "HTCGPSTool" first. then, when using either google maps or windows live, the map only updates the position about once a minute. i am trying to find out if using either of those programs, i can get a faster positioning update,? i was looking at the registry and saw the above registry entry for "timebetweenfixes" and thought that might ahve something to do with it ... any help?
anyone have any ideas what i can do to get faster updates from the gps and googlemaps?
Are you sure you're using GPS and not GSM network to confirm your location based on antenna's?

Buit in GPS in HTC phones

Hi,
Got a HTC pharos today in replacement of a touch (broken, change by orange many times last month but since they only provide crappy refurbished mobiles....). Pretty satisfied so far. I don t miss htc cube that much... I don t miss Wifi yet (only use it when on holidays, that is to say almost never muhaha). GPS is nice... No more bluetooth head to carry in my already too full pockets.
So, let's start with my problem). It has a built in GPS, just like the cruise. After toying a bit with my new phone... and after I have configured the gps, I have noticed that a GPRS connection is launched each time I launch the GPS (TomTom that I had to install since those stupid techs from orange thought it was good to remove from their rom and replace by by their ****ty home made navigator).
Have you noticed that kind of connection. Do you know how I could prevent this (even though it doesn't cost me a buck, since I have set a blank GPRS by default). Could be a thing or two that could be modified in the registry but cannot find it yet...
Sorry I post in the cruise section but there is no pharos section yet (please Admins.... listen to my prayer)
your phone may have "assisted" GPS (AGPS) enabled, thats why it is attempting a data connection. This feature is designed to locate you faster when the satelite signals are week.
You may/may not need a registry editor to disable this feature...
That phone does have aGPS, if you don't want it trying to grab a data connection go to Start/ Programs/ QuickGPS select Menu/ Options and de-select the "Auto download when data expires"
I find that if you use the GPS daily you don't need the aGPS data, it will work just as well without. Also TomTom itself could be requesting the data connection if you have enabled any of the Plus services - Mike
right ...
AGPS = Assisted GPS
HKLM/Software/HTC/SUPL AGPS/EnableAGPS
1 = on
2 = off
http://ghisler.fileburst.com/cebeta3/tcmdpocket25_armpubbeta3.exe
its a free file commander / reg editor / ftp client .... all you need
Hi
Thank you for your help. Couldn't find the quick menu so I edited the registry like Aleph305 said. Working perfectly. Now the GPS starts a few seconds after I launch TomTom.
I do not use plus services so I will not miss AGPS a lot.

[AGPS] The Universal AGPS Project - Let's get it working!

Okay, so here's the deal. If we get AGPS working in some way, we can get MUCH quicker GPS fixes (30 seconds or less). I'm the coder for GPSToolPro you can find here in the Software subforum of the Raphael forum. I'm hoping to incorporate this into the program in some way.
I've managed to obtain the Lat/Long coordinates using Cell Tower information and Google.
There are two ways to solve this issue.
#1
Now, I'm looking to use these Registry Keys
HKLM\Software\HTC\SUPL AGPS\ServerIP
HKLM\Software\HTC\SUPL AGPS\ServerPort
HKLM\Software\HTC\SUPL AGPS\GPSMode
The plan is to set the ServerIP to 127.0.0.1 and run any port. Then the GPSToolPro will listen in on the port number on the device and RESPOND with the Lat/Long information obtained from Google. Right now, what I need is, somebody who has AGPS working with their provider to try to packet sniff and get see how we can make our own AGPS server run on the device. GPSMode mode will be set to "1", not "2". This is specific to the QualComm's GpsOne unit. The values are the following:
0 - Standalone - Your handset has no connection to the network, and uses only the GPS satellite signals it can currently receive to try and establish a location.
1 - MS Based - Your handset is connected to the network, and uses the GPS signals + a location signal from the network.
2 - MS Assisted - Your handset is connected to the network, uses GPS signals + a location signal then relays its 'fix' to the server, which then uses the signal strength from your phone to the network towers to further plot your position. You can still maintain voice communication in this scenario, but not 'Internet/Network service' ie Web Browser, IM, streaming TV etc..
4 - MS Assisted/Hybrid - Same as above, but network functionality remains. Normally only in areas with exceptional coverage.
Click to expand...
Click to collapse
I haven't been able to find the signal strength of the tower I'm connected to yet so right now, I'm limited to mode 1. Also, I can only find information on the tower I'm currently connected to, not all of them so I can't try cell tower triangulation yet.
This solution is limited to only working with HTC GpsOne devices.
#2
We can also try using the IOCTL_GPS_WRITE_ASSISTED command. This command will directly send the AGPS info to the GPS device. The question is, how do we send this information? I believe we need to get a AGPS signal first, use IOCTL_GPS_READ_ASSISTED, parse that information, figure out the format, get Lat/Long from Google, format it in the same way as received from IOCTL_GPS_READ_ASSISTED and send it back with IOCTL_GPS_WRITE_ASSISTED.
This universal for all Windows Mobile phones.
For method #1, I need somebody who has an HTC device with a working AGPS signal (from their provider or whomever).
For method #2, I need any Windows Mobile device that has a working AGPS signal.
I say method #1 requires HTC device because supposedly AGPS isn't standardized and one manufacturer's AGPS format may differ from another.
Hopefully, with the your help, we can get this working.
let's support CLShortFuse iniciative, it would be incredible if we would get AGPS working.
My AGPS (Spain-Orange) doesn't work at all. And i don't know anybody that has a working AGPS device/operator combination.
I've read around XDA that some people in the Raphael CDMA section have AGPS working, maybe we could post there to see if somebody replies and can collaborate with this project.
I was just about to post something similar. Only I wasn't as prepared with as much information. I was going to try to start a thread to consolidate the AGPS server settings for each additional carrier since I'm with T-Mobile and using an AT&T Fuze. My AGPS is not working at all. It keeps trying to connect to AT&T's Media Net and naturally, it fails.
Would it be possible to maybe create some kind of way to trick the devices into thinking that they are AT&T Fuze's and connect to the Media Net to connect to AT&T's AGPS Servers?
I Personally support this project 100%!!
Side note - Has anyone gotten AGPS working on USA T-Mobile at all? I attached a screenshot of the result of what happens when I try to use AGPS on my Fuze.
dharvey4651:
Code:
[HKEY_LOCAL_MACHINE\SOFTWARE\HTC\SUPL AGPS]
"Network"="MEdia Net"
"GPRSConnection"="MEdia Net"
You need to change those to whatever your network is called on t-mobile
I dont know much about any of this, I have an AT&T Fuze with AT&T service, I also have the AT&T Navigator Software and an account with it, so, is there anything I can do to help? how do I know if my AGPS works or not?
dharvey4651 said:
I was just about to post something similar. Only I wasn't as prepared with as much information. I was going to try to start a thread to consolidate the AGPS server settings for each additional carrier since I'm with T-Mobile and using an AT&T Fuze. My AGPS is not working at all. It keeps trying to connect to AT&T's Media Net and naturally, it fails.
Would it be possible to maybe create some kind of way to trick the devices into thinking that they are AT&T Fuze's and connect to the Media Net to connect to AT&T's AGPS Servers?
I Personally support this project 100%!!
Side note - Has anyone gotten AGPS working on USA T-Mobile at all? I attached a screenshot of the result of what happens when I try to use AGPS on my Fuze.
Click to expand...
Click to collapse
Actually, there are AGPS standards. Today, most GPS chipset vendors use their own AGPS platforms. However, that is rapidly changing. To my knowledge, most (including Snaptrack/GPSOne, aka Qualcomm) support 'secure user plane location architecture' or SUPL. This is a standard adopted by the OMA or 'Open Mobile Alliance' (www.openmobilealliance.org). The OMA is basically almost all of the heavy weights of wireless including Silicon manufacturers, Handset Vendors, Carriers, etc.
Currently, the OMA has ratified SUPL v1.0 and the standards body and members are working on the next version - 2.0.
What is SUPL? In a nutshell, SUPL is designed to support location determination regardless of the location server used by the mobile carrier. As the number of applications grow for LBS, so does the need by developers to work across location platforms and mobile device hardware manufacturers.
CLS, I am a bit confused as to your intentions. The Raphael supports artificial ephemerids (Qualcomm's GPSOneXTRA) which cut cold-start TTFF down to under 10 seconds. Using cellular triangulation won't buy you much.
Is there another reason I am missing here?
Da_G said:
dharvey4651:
Code:
[HKEY_LOCAL_MACHINE\SOFTWARE\HTC\SUPL AGPS]
"Network"="MEdia Net"
"GPRSConnection"="MEdia Net"
You need to change those to whatever your network is called on t-mobile
Click to expand...
Click to collapse
I'll try this now. I think my data is called "T-Mobile Data"
fatguybp said:
I dont know much about any of this, I have an AT&T Fuze with AT&T service, I also have the AT&T Navigator Software and an account with it, so, is there anything I can do to help? how do I know if my AGPS works or not?
Click to expand...
Click to collapse
If your AGPS is working, your GPS should lock in just under a minute every single time, sometimes even faster. With my old Sprint Touch(back when I was with Sprint), I was able to lock onto upwards of 7 satellites every single time in less than 10 seconds. Now it takes 2-5 minutes every time with my Fuze on T-Mobile.
Operation619 said:
Actually, there are AGPS standards. Today, most GPS chipset vendors use their own AGPS platforms. However, that is rapidly changing. To my knowledge, most (including Snaptrack/GPSOne, aka Qualcomm) support 'secure user plane location architecture' or SUPL. This is a standard adopted by the OMA or 'Open Mobile Alliance' (www.openmobilealliance.org). The OMA is basically almost all of the heavy weights of wireless including Silicon manufacturers, Handset Vendors, Carriers, etc.
Currently, the OMA has ratified SUPL v1.0 and the standards body and members are working on the next version - 2.0.
What is SUPL? In a nutshell, SUPL is designed to support location determination regardless of the location server used by the mobile carrier. As the number of applications grow for LBS, so does the need by developers to work across location platforms and mobile device hardware manufacturers.
CLS, I am a bit confused as to your intentions. The Raphael supports artificial ephemerids (Qualcomm's GPSOneXTRA) which cut cold-start TTFF down to under 10 seconds. Using cellular triangulation won't buy you much.
Is there another reason I am missing here?
Click to expand...
Click to collapse
I've never had my Fuze lock it's GPS 10 seconds or less. NEVER. It's usually 2-5 minutes on average. Sometimes it doesn't even lock at all after standing outside in the cold for upwards of 5 minutes smoking a cigarette.
Dharvey:
I get 3D position fixes in open-sky conditions in ~6 seconds.
Under my balcony in my apartment in a highly attenuated partial-sky view I will get 3D fixes in ~20 seconds.
Indoor in my home office with a south facing window and light foliage I'll see 2D in about 1 minute and 3D almost always under 2 minutes.
At my corporate office with a re-radiating GPS antenna I'll see consistent GPS lock in ~6 seconds.
Hell, I'd love to put this in the multi-channel GPS simulator at my desk but I don't think that's a good idea.
Operation619 said:
Dharvey:
I get 3D position fixes in open-sky conditions in ~6 seconds.
Under my balcony in my apartment in a highly attenuated partial-sky view I will get 3D fixes in ~20 seconds.
Indoor in my home office with a south facing window and light foliage I'll see 2D in about 1 minute and 3D almost always under 2 minutes.
At my corporate office with a re-radiating GPS antenna I'll see consistent GPS lock in ~6 seconds.
Hell, I'd love to put this in the multi-channel GPS simulator at my desk but I don't think that's a good idea.
Click to expand...
Click to collapse
Yes you definitely have working AGPS
I made the registry changes mentioned above and I'm about to test my AGPS now. If it works I'll make a cab file to make the registry changes for everyone who may want it. (T-Mobile Only of course)
EDIT:: Making the following registry changes seems to have helped a little. My GPS locked in about 1 minute in my bedroom from a cold start(after soft-reset) It also connected to the data instead of error-ing out which was also different.
FROM:
[HKEY_LOCAL_MACHINE\SOFTWARE\HTC\SUPL AGPS]
"Network"="MEdia Net"
"GPRSConnection"="MEdia Net"
TO:
[HKEY_LOCAL_MACHINE\SOFTWARE\HTC\SUPL AGPS]
"Network"="T-Mobile Data"
"GPRSConnection"="T-Mobile Data"
EDIT AGAIN:: I just soft-reset and from a dead cold start(GPS OFF COMPLETELY) it locked onto 8 satellites in less than a minute in my bedroom agian.
I'm starting to like this phone again.
EDIT AGAIN...Spoke too soon... It's doing it again. It was fast for 2 locks and 2 soft-resets but now it's slow again.
This is what the SUPL AGPS key looks like in my registry:
Code:
REGEDIT4
[HKEY_LOCAL_MACHINE\Software\HTC\SUPL AGPS]
"EnableAGPS"=dword:00000001
"Network"="T-Mobile Data"
"GPRSConnection"="T-Mobile Data"
"PrivacyMethod"=dword:00000003
"TLSHostName"="h-slp.mnc410.mcc310.pub.3gppnetwork.org"
"ServerIP"="199.88.233.169"
"ServerURL"="h-slp.mnc410.mcc310.pub.3gppnetwork.org"
"DynamicURL"="h-slp.mnc000.mcc111.pub.3gppnetwork.org"
"EnabledPrivacyMethod"=dword:00000001
"CloseConfirmMsgTime"=dword:0000003C
"EnableLocInfo"=dword:00000001
"ServerPort"=dword:00001C6B
"QosPerformance"=dword:00000059
"QoSAccuracy"=dword:00000032
"TimeBetweenFixes"=dword:00000001
"NumberFixes"=dword:3B9AC9FF
"GPSMode"=dword:00000002
[HKEY_LOCAL_MACHINE\Software\HTC\SUPL AGPS\DefaultSetting]
"EnableAGPS"=dword:00000001
"CloseConfirmMsgTime"=dword:0000003C
"PrivacyMethod"=dword:00000000
"EnableLocInfo"=dword:00000001
Nope. I'm not using any type of TOA or AOA, or what you and the OP are describing as "AGPS" on this handset. Network provided AGPS is disabled. Furthermore, GPS performance is somewhat better when my GSM radio is off.
Note that I am using the artificial ephemeris information provided by the Q or "QuickGPS" as most users know it.
These shots were taken in my home office scenario I described above. PDoP is pretty high (but still good) as I am in a poor visibility scenario (lots of multipath, limited sky view, etc.)
Well... I finally got AGPS working for me(at least it feels like it). My GPS is now locking onto 6-10 satellites in less than a minute every single time. Even after a soft-reset without using any kind of primer like GPSToday or HTC GPS Tool.
I'm a happy camper.
All it took was a little tweaking to the registry and now it works.
I attached a cab file to fix the AGPS.
WARNING!!! This is ONLY FOR USA T-Mobile!!
Harvey,
Are you downloading the QuickGPS file? If so, what's the age of the download?
Operation619 said:
Harvey,
Are you downloading the QuickGPS file? If so, what's the age of the download?
Click to expand...
Click to collapse
Where does QuickGPS download to? I downloaded it today but I never bothered looking for the file it downloaded.
I would suspect you are still not using network-assisted positioning. The QuickGPS file is aiding the receiver.
If you were using network assistance you would be getting rough position (<1000m) in seconds. Even indoors or your basement where there is zero GPS signal available.
Here's a quick way to test if AGPS is really working.
Set GPSMode to 1. GPSMode is normally set to 2 - it will auto-fallback if AGPS fails.
GPSMode 1 will continually try to get an AGPS fix, and not send you any NMEA data at all if it doesn't. You'll probably need to up the value in TimeBetweenFixes from 1 to at least 3 or 4, allowing only 1 second between fixes doesn't give your phone enough time to send location data to the AGPS PDE server and get a response.
Anywho, in GPSMode 1 i get no NMEA strings at all, so my agps is definitely broke
Operation619 said:
I would suspect you are still not using network-assisted positioning. The QuickGPS file is aiding the receiver.
If you were using network assistance you would be getting rough position (<1000m) in seconds. Even indoors or your basement where there is zero GPS signal available.
Click to expand...
Click to collapse
You may be right but I feel that It's still using some form of network assisted GPS because it's never been this fast before. I hard-reset and did not use QuickGPS at all and my results are the same.
Try turning off your radio to see if you still have the same TTFF.
Remember QuickGPS will download it's data in the background on a cradled connection with no cue from you, too, so make sure it didnt download \Windows\xtra.bin and inject it without you knowing
Also the QuickGPS data survives a hard reset if "ClearGPS" flag isnt set for the hard reset program or you don't have the CleanGPSData package in your ROM.
Operation619 said:
Try turning off your radio to see if you still have the same TTFF.
Click to expand...
Click to collapse
I'll try this now.
EDIT:: Seems you're right. It just locked onto 10 satellites in flight mode right in my bedroom in less than 30 seconds. WOW. Never saw it do that before.
Good catch Da G.
Harvey - are you willing to do a little test?
To test if network assistance is available and helping you might want to try the following.
This test will need to be performed at the same location in an ideal, open-sky condition with the handset in the same orientation in your hand each time:
1. Make sure your handset is free of the QuickGPS file.
2. Shut off all radios, go outside in a clear, open-sky environment.
3. Acquire 3D position fixes 10 times. Record the times it takes to acquire in seconds (aka TTFF).
4. Average the TTFFs
5. Power Cycle the handset.
6. Ensure no programs or registry settings inhibit AGPS or network assistance.
7. Make sure there is no QuickGPS file present.
8. Turn on your GSM radio.
9. Re-acquire GPS 3D position fixes in the same open-sky area 10x and record each TTFF
10. Average the TTFFs
What's the result?

[Tweak] ULTIMATE!! aGPS cab (GOOGLE or NOKIA server!) Generic UPDATE 06/08/10!

UPDATED TO USE GOOGLE SUPL 3/30/10!
What people are saying:
patcat007 said:
I must say this is one of the most useful cabs floating around. The GPS locks in about 5 secs. Its almost as if Big Brother is watching you. Thank you Fone Fanatic your cab was of great help.
Click to expand...
Click to collapse
allthatinny said:
after installing this my locks were almost instantly, seems like this is the cure for all our GPS problem...
Click to expand...
Click to collapse
​
Here is my own aGPS settings cab.
Created originally for my Raphael, but works perfectly fine on my Rhodium (Touch Pro 2) and should work on any other WM6.1/5 aGPS capable device.
This replaces the default aGPS server to the one GOOGLE aGPS server. This has been found to dramaticaly increase GPS lock speed! After applying this cab i get cold Locks in about 20 seconds and warm gps lock in under 15!
Don't be scared to try it out as its easy to revert to defualt settings!
Try it out and report your results!
I created this so I can just add it to my UC list making life easier in setting up a rom after flashing and thought others might benefit from it.
Feel free to comment, hate, or appreciate
If there is a demand, i can easily delete the At&t bit and so its more generic, also if you want this adapted for your provider, reply with your APN and GPRSConnection and i can create the cab for you
It sets the following in the [HKLM\Software\HTC\SUPL aGPS\] Registry
DynamicURL to supl.google.com (searched on the internet and many people claim much faster locks than the default h-slp.mnc410.mcc310.pub.3gppnetwork.org)
EnableAGPS 1 (so aGPS is enabled in settings)
EnableLocInfo 0 Unchecks "Enable AGPS loation information to network services. Operator can get your location information." From the Privacy tab of the AGPS Settings
ServerIP to 74.125.113.192
ServerURL and TLSHostName to supl.google.com
Decided to just make a Generic one that sets the nokia aGPS server, enables aGPS, disables Location info and no network configuration.
[UPDATE: The cabs are the SAME as the previous ones titled FF ATT/Fido/Generic Nokia aGPS Settings, I just changed Nokia to Ultimate because I was getting PMs on how to install them on nokia devices]
update 3/30/10: updated the cabs to use the google supl which is provided on android devices!
There is no need for carrier specific settings, they should automaticly fill in from info already on your device. If you go to HKLM\Software\HTC\SUPL aGPS\ and APN, Network, and GPRSConnection are empty after you've installed the cab and soft reseted, then post here and i will make carrier specific cabs.
[06/08/2010] Re-attached the supl.nokia cab as requested. Please test and compare to the newly attached "FF Ultimate aGPS Tweak_supl.google_Generic.cab" and report your results.
When i ping supl.nokia.com requests time out leading me to believe nokia's servers are down, or they changed them to something else.
[size=+2]With FF Ultimate aGPS Tweak_suple.google_Generic.cab i get a lock in under 15seconds, even after hard reset!![/size]
​
does this speed up gps pick up time?
breezethrusd said:
does this speed up gps pick up time?
Click to expand...
Click to collapse
fone_fanatic said:
DynamicURL to supl.nokia.com (searched on the internet and many people claim much faster locks than the default h-slp.mnc410.mcc310.pub.3gppnetwork.org)
Click to expand...
Click to collapse
..........
fone_fanatic said:
Here is my own aGPS settings cab. Which does the following.
I created this so I can just add it to my UC list making life easier in setting up a rom after flashing and thought others might benefit from it.
Feel free to comment, hate, or appreciate
If there is a demand, i can easily delete the At&t bit and so its more generic, also if you want this adapted for your provider, reply with your APN and GPRSConnection and i can create the cab for you
It sets the following in the [HKLM\Software\HTC\SUPL aGPS\] Registry
APN to wap.cingular
DynamicURL to supl.nokia.com (searched on the internet and many people claim much faster locks than the default h-slp.mnc410.mcc310.pub.3gppnetwork.org)
EnableAGPS 1 (so aGPS is enabled in settings)
EnableLocInfo 0 Unchecks "Enable AGPS loation information to network services. Operator can get your location information." From the Privacy tab of the AGPS Settings
GPRSConnection and Network to MEdia Net
ServerIP to 66.35.236.25
ServerURL and TLSHostName to supl.nokia.com
Click to expand...
Click to collapse
I would really appreciate a cab for Fido.
APN internet.fido.ca
All I put for internconnection is
Name fido
apn internet.fido.ca
user fido
pass fido
Let me know if you require anything else.
finch said:
I would really appreciate a cab for Fido.
APN internet.fido.ca
All I put for internconnection is
Name fido
apn internet.fido.ca
user fido
pass fido
Let me know if you require anything else.
Click to expand...
Click to collapse
check first post, and don't know if it'll make a difference or not but set it to the connection name to Fido, capital F
Great work!
Pure awesomeness!
If you could, please make Rogers or unbranded version of this greatness!
Xaaran said:
Pure awesomeness!
If you could, please make Rogers or unbranded version of this greatness!
Click to expand...
Click to collapse
Generic/unbranded version added to first post!
fone_fanatic said:
check first post, and don't know if it'll make a difference or not but set it to the connection name to Fido, capital F
Click to expand...
Click to collapse
Thanks a million!
after installing this my locks were almost instantly, seems like this is the cure for all our GPS problem, i also got FusionGPS installed to get a lock after i soft reset my phone and i get looks btw 20-30 sec out door and 30-80 sec indoor
finch said:
I would really appreciate a cab for Fido.
APN internet.fido.ca
All I put for internconnection is
Name fido
apn internet.fido.ca
user fido
pass fido
Let me know if you require anything else.
Click to expand...
Click to collapse
Finch, did you try the cab? what's the feedback on it working with Fido?
Now only thing left is to find a way to trick the phone into thinking it's on Roger's instead of Fido and get rid of that roaming problem.
..
tjex said:
Finch, did you try the cab? what's the feedback on it working with Fido?
Now only thing left is to find a way to trick the phone into thinking it's on Roger's instead of Fido and get rid of that roaming problem.
..
Click to expand...
Click to collapse
If you don't want to try the fido cab, go ahead and try the Generic cab which doesn't touch any of the apn/data settings.
Report back with your results
Auto Connect?
Hi, I have installed the generic cab. But one question: do I have to establish the data connection by myself manually? I mean, applications like explorer or email do connect automatically once they need it. Apparently AGPS doesn't.
Further, as far as I understand, the generic cab should work everywhere if not limited by your carrier, right? I wonder if it works in Singapore though. Any ideas?
tjex said:
Finch, did you try the cab? what's the feedback on it working with Fido?
Now only thing left is to find a way to trick the phone into thinking it's on Roger's instead of Fido and get rid of that roaming problem.
..
Click to expand...
Click to collapse
Fido seems to work well. Initial fix can be slow but pretty damn fast afterwards.
Thank you very very much
enables aGPS on my T8285 in USA
clausg said:
Hi, I have installed the generic cab. But one question: do I have to establish the data connection by myself manually? I mean, applications like explorer or email do connect automatically once they need it. Apparently AGPS doesn't.
Further, as far as I understand, the generic cab should work everywhere if not limited by your carrier, right? I wonder if it works in Singapore though. Any ideas?
Click to expand...
Click to collapse
Not 100% sure if it is supposed to activate the data connection or not. If it doesn't, just fire up internet explorer before you decide to use your GPS to have a data connection.
And the generic cab is without data settings, so yes it should work in singapore or with any carrier
Sir.B said:
Thank you very very much
enables aGPS on my T8285 in USA
Click to expand...
Click to collapse
Your welcome
I applied the Generic Cab of GPS settings to my Touch Pro using an Energy ROM Build 6.5 21864 and Radio 1.14.25.05. I must say this is one of the most useful cabs floating around. The GPS locks in about 5 secs. Its almost as if Big Brother is watching you. Thank you Fone Fanatic your cab was of great help.
patcat007 said:
I applied the Generic Cab of GPS settings to my Touch Pro using an Energy ROM Build 6.5 21864 and Radio 1.14.25.05. I must say this is one of the most useful cabs floating around. The GPS locks in about 5 secs. Its almost as if Big Brother is watching you. Thank you Fone Fanatic your cab was of great help.
Click to expand...
Click to collapse
your welcome
and about the big brother comment, thats why this cab does the following
EnableLocInfo 0 Unchecks "Enable AGPS loation information to network services. Operator can get your location information." From the Privacy tab of the AGPS Settings
Click to expand...
Click to collapse
so this doesn't let big brother follow, although, if he did want to he really could and we can't do anything about that
glad this helping people out as it did me!
So wait, we can use any of them on any carrier or....
Which one do i use for tmobile>?
I installed the generic one on my TP which is on T-Mobile UK.
It did not seem to get a quick lock when I had the data connection disabled.
I enabled the data connection and it seemed to get a quick lock.
So I take it that the generic one will not fire up your data connection itself, but if you get an operator specific one it can?
If so, could I have a version for T-Mobile UK please? I am not sure what the password is, these are the settings I can find on my phone:
APN: general.t-mobile.co.uk
User: T-mobile
Pass: ??? (Starred out)
Is there not maybe some way of taking this info from the phone or automating this process so you dont have to make unique versions of this app?
And what about QuickGPS, does this make it redundant?
Thanks
What about touch pro cdma? Should this work for CDMA? I see no APN key in registry. How could I make it work?
Thanks.

Problems detecting GPS service with iGO8 (or anyother SatNav program)...

Hey dudes,
im sure many of you already know this, but i figured id post it for those who may not be aware of this possible fix.
for the last few days ive been playing around with igo8 on my HD2, and i have been a little disappointed with the way this program performs. i have had lots of trouble getting a GPS lock, and frequently getting the "gps receiver cannot be found", message while trying to detect the devices GPS.
i think i may have a solution for any of you experiencing the same issue.
my solutions is to disable AGPS, in the HTC's Locations seetings menu.
after doing this, i have had great success getting a GPS lock - even indoors.
hope this helps a few of you.
cheers.
------------EDIT-------------
ps: i also have my GPS settings (in igo8) set to Port 4, with a Baut Rate of 38400.
i get a GPS fix within half a second of opening the igo8 map screen.
good luck.
no problem man. i figured id just make a post for those who may have been searching (or googleing) for "igo8" or "gps receiver cannot be found" rather than the specific "AGPS" setting. i spent quite a bit of time searching for everything excpet AGPS... seeing as though i had no idea AGPS was the cause of my problem.
so i thought i make the post for peeps in my situation, and also just to confirm that this AGPS thing might be an actual fix.
thanks for the reply dude.
ps: i dont mean my reply to sound like an A-hole, just wording it as simple as i can.
cheers.
[email protected] said:
my solutions is to disable AGPS, in the HTC's Locations seetings menu.
Click to expand...
Click to collapse
Hello
can't find disable AGPS, in the HTC's Locations seetings menu
using miri 6.5.X V6
can you explain more or screen shot
hey mate. just gotta go to htc settings screen > location > then hit the on/off switch on the right. check the screen shot.
The agps part is missing on my 1.66 wwe rom. Is there something I am missing?
not too sure mate. if its a custom ROM, the ROM chef may have removed the AGPS feature. otherwise its possible your ROM simply does not contain the AGPS service.
if you cannot see it, and your ROM does not have it... then it shouldnt be causing any problems. are you having difficulty with your SatNav program?
I also don't have that setting in my official htc 1.66 NLD rom. Is there any other way to disable it? I kind of am curious if it improves my iGO8. Although I don't really have a problem. Only sometimes it takes a minute or two to get a fix.
Port Issue
Hi all,
i have an issue in finding the GPS signal as when i go the customize the external GPS under settings i assign the COM2 under Programs and the port to COM9 with Baud Rate 4800 and under access clicked the Manage GPS Automatically, then when i press on ok and go to get the GPS signal on iGO it cannot be located ...
i go back to external and found that the port is NONE...put it back to COM9 click OK and check it back ...it turns to NONE............installed new official ROM, cooked ROMs, other radios and even other GPS like Route66 and navigon but always the same problem cant get the GPS signal.......
any help
Cobrav... in your "external gps" settings, try set your GPS program port to COM4, the hardware i believe is irrelevant, because you are not plugging an external GPS device in (so set your GPS hardware port to 'none), and have 'manage GPS automatically' checked in the access tab. this is how i have my device set (having igo8 set to the port and baud rate from the first post), and with AGPS disabled... igo works like a charm. let me know if you have any further problems.
Cenobite_ & Agoattamer... not too sure why the AGPS service is not visable or present in your ROM. but if your not experiencing any crippleing problems with your SatNav apps... i wouldnt worry about it. the problem i was having with igo8 before disabling AGPS was making igo8 almost unuseable. one thing you can try though... in a file explorer, navigate to your devices windows folder (having all show hidden files settings checked) look for a .EXE file called AGPSSettings.exe. if this exists, run this .EXE and disable the AGPS setting. if this .EXE does not exist, its probably pretty safe to assume that there is no AGPS service on your phone, hence it will not cause any issues for you.
[email protected] said:
hey mate. just gotta go to htc settings screen > location > then hit the on/off switch on the right. check the screen shot.
Click to expand...
Click to collapse
thank you,
don't have this setting in miri 6.5.X rom
any way I turn around this issue by launch OZI and after GPS locked I close OZI and launch IGO
Actually I have no issue connecting with iGO8. Just curious why the setting wasn't there in my official 1.66 rom. Phone is labeled as having agps but not one setting for it. So I don't know if it is off or on. Now I don't live in a big city but it would be nice to be able to enable it if entering a big city with many tall buildings.
What rom do you have, that you have this setting?
im using the stock Telstra ROM - 1.49.841.1 (71528) WWE.
so it seems my ROM is older than yours.
Thanks. I actually have a T9193. HTC must have felt the need to do away with that setting for some reason.
agreed. i also have the T9193, but it seems theyve omitted the AGPS setting/feature in the more recent ROMs. good call HTC.

Categories

Resources