Care Unlock  
Your online unlock store
GSM-Forum  

Welcome to the GSM-Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   GSM-Forum > Other Gsm/Mobile Related Forums > GPS devices , Navigators & Maps

GPS devices , Navigators & Maps Find here all threads related to Global Positioning Systems (GPS), Navigators, GPS receivers, Settings, Maps and GPS modes.. etc

Reply
 
LinkBack Thread Tools Display Modes
Old 05-07-2012, 09:49   #3436 (permalink)
Freak Poster
 
Join Date: Mar 2011
Posts: 462
Member: 1528218
Status: Offline
Thanks: 36
Thanked 85 Times in 63 Posts
You can, safetey cams are not a part of the map and come seperately.
You need the corresponding .dct file too.
  Reply With Quote
The Following User Says Thank You to Downunder35m For This Useful Post:
Old 05-07-2012, 16:03   #3437 (permalink)
No Life Poster
 
rytenuff's Avatar
 
Join Date: May 2006
Posts: 948
Member: 283999
Status: Offline
Thanks: 163
Thanked 1,212 Times in 380 Posts
For the odd occasion when Home won't give you an updated SatFix without also downloading something else you don't want, this may be helpful.

SatFix Direct from TT: for TT with SIRFIII - chip:

http://home.tomtom.com/download/Ephe...I&devicecode=1

or

http://home.tomtom.com/download/Ephe...p;devicecode=2

or

SatFix Direct from TT: for TT with GlobalLocate - chip

http://home.tomtom.com/download/Ephe...e&devicecode=1

or you could use quickgpsfix v2.05 which does it for you.
  Reply With Quote
The Following User Says Thank You to rytenuff For This Useful Post:
Old 05-08-2012, 10:10   #3438 (permalink)
Junior Member
 
Join Date: Mar 2010
Posts: 13
Member: 1274109
Status: Offline
Thanks: 2
Thanked 0 Times in 0 Posts
Thanks very much for your help chaps.

Another question: After installing totally different maps to what my device came with, can I use LIVE services with it? In other words can TomTom find out that my device has different maps now? or something dodgy etc etc?

Cheers.
  Reply With Quote
Old 05-08-2012, 10:17   #3439 (permalink)
Freak Poster
 
Join Date: Mar 2011
Posts: 462
Member: 1528218
Status: Offline
Thanks: 36
Thanked 85 Times in 63 Posts
You need a subscription for them, if you have you can use them.
  Reply With Quote
Old 05-08-2012, 11:40   #3440 (permalink)
Freak Poster
 
Join Date: Mar 2011
Posts: 462
Member: 1528218
Status: Offline
Thanks: 36
Thanked 85 Times in 63 Posts
@rytenuff: is it possible that the first link is not for the Sirf3 but the old Sirf2 Chip?
  Reply With Quote
Old 05-08-2012, 12:02   #3441 (permalink)
Freak Poster
 
Join Date: Dec 2009
Posts: 244
Member: 1179032
Status: Offline
Thanks: 93
Thanked 36 Times in 33 Posts
Quote:
Originally Posted by Downunder35m View Post
@rytenuff: is it possible that the first link is not for the Sirf3 but the old Sirf2 Chip?
According to TomTom are SIRF3 links the two.

Code:
http://home.tomtom.com/download/Ephemeris.cab?type=ephemeris&eeProvider=SIRFStarIII&devicecode=1
http://home.tomtom.com/download/Ephemeris.cab?type=ephemeris&eeProvider=SiRFStarIII&devicecode=2
Just change the date "Expire" in "ee_meta.txt"

Last edited by bihurkatu; 05-08-2012 at 12:07.
  Reply With Quote
Old 05-08-2012, 12:52   #3442 (permalink)
No Life Poster
 
dsa8310's Avatar
 
Join Date: Feb 2009
Posts: 2,563
Member: 973199
Status: Offline
Thanks: 204
Thanked 1,591 Times in 775 Posts
It's possible to get quickgpsfix directly from your tt device connected to a mobile phone via BT, without PC. Setup is a little laborious, and a data plan is needed, but once done, it could be added as a permanent extra menu entry.

Basically, perform the TT wireless setup (e.g. in mode 25), and make sure you get the top folder ppp on your storage.
Then, you have to figure out the address and channel number of your phone dial-up modem. Under Linux, use two commands (while BT visible):

$ hcitool scan
Scanning ...
aa:bb:cc:dd:ee:ff Nokia N9

$ sdptool browse aa:bb:cc:dd:ee:ff | less
...
Service Name: Dial-Up Networking
Service RecHandle: 0x10004
Service Class ID List:
"Dialup Networking" (0x1103)
"Generic Networking" (0x1201)
Protocol Descriptor List:
"L2CAP" (0x0100)
"RFCOMM" (0x0003)
Channel: 1
Profile Descriptor List:
"Dialup Networking" (0x1103)
Version: 0x0100
...

My phone has the (fake) address aa:bb:cc:dd:ee:ff, and the channel corresponding to Dial-Up Networking is 1, as displayed above.

Now, as suggested in post #5158, two commands have to be executed on your TT device, in an "extra" type of script, to get Internet connectivity:

# /mnt/sdcard/extras/TTbtconsole/rfcomm bind rfcomm1 aa:bb:cc:dd:ee:ff 1

Note that the address and channel number are the last two parameters above.

# /sbin/pppd rfcomm1 115200 call ttgobuddy &

Finally, getting the Ephemeris.cab file should be done using the links in post #3437:

# /bin/wget "http://home.tomtom.com/download/Ephemeris.cab?type=ephemeris&eeProvider=SIRFStarII I&devicecode=1" -O Ephemeris.cab

And, an ARM cabextract command is needed too, available... The contents of Ephemeris.cab should go to directory /mnt/sdcard/ephem/

# cabextract -d /mnt/sdcard/ephem Ephemeris.cab

Lastly, stop networking with:

# killall pppd

Everything should become a click-able command... with icon... etc.

Anyway, here is the ARM cabextract:

cabextract download - 2shared

Probably BT speed could be even 460800 instead of 115200...
All testing could be done using BT Console...
Any dsa extra add-on could be used as model (focus on directory SdkRegistry)...
wget might have a slightly different syntax...
  Reply With Quote
Old 05-08-2012, 13:20   #3443 (permalink)
No Life Poster
 
dsa8310's Avatar
 
Join Date: Feb 2009
Posts: 2,563
Member: 973199
Status: Offline
Thanks: 204
Thanked 1,591 Times in 775 Posts
If I had my TT at hand I would release a quickgpsfix template add-on...
  Reply With Quote
Old 05-08-2012, 14:04   #3444 (permalink)
No Life Poster
 
dsa8310's Avatar
 
Join Date: Feb 2009
Posts: 2,563
Member: 973199
Status: Offline
Thanks: 204
Thanked 1,591 Times in 775 Posts
In principle, same script would work for devices with built-in gprs modem too (the bringing up of the network would be skipped)...
  Reply With Quote
Old 05-10-2012, 03:38   #3445 (permalink)
Junior Member
 
Join Date: Mar 2011
Posts: 10
Member: 1543686
Status: Offline
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Downunder35m View Post
You can, safetey cams are not a part of the map and come seperately.
You need the corresponding .dct file too.
I was told the New Zealand updates were part of the AU ones but updates do not include the DCT file. Can I still use the old NZ dct file or should I get a copy of the Au one? TNX
  Reply With Quote
Old 05-10-2012, 05:54   #3446 (permalink)
Freak Poster
 
Join Date: Mar 2011
Posts: 462
Member: 1528218
Status: Offline
Thanks: 36
Thanked 85 Times in 63 Posts
Neither.
New Zealand is not part of Australia, so why would it be included in the AU maps?
The .dct file for the cams stays the same you only replce the cam files with newer ones, so no need to activate every time.
But to be perfectly clear : for NZ you need the NZ cams and the NZ map.

To my best knowledge the NZ cams are not included in the AU cams.
  Reply With Quote
Old 05-10-2012, 20:30   #3447 (permalink)
Junior Member
 
Join Date: Mar 2011
Posts: 10
Member: 1543686
Status: Offline
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Downunder35m View Post
Neither.
New Zealand is not part of Australia, so why would it be included in the AU maps?
The .dct file for the cams stays the same you only replce the cam files with newer ones, so no need to activate every time.
But to be perfectly clear : for NZ you need the NZ cams and the NZ map.

To my best knowledge the NZ cams are not included in the AU cams.
Thanks for that but I was told on another forum that TomTom said they were included. I will be testing them today so will report back.
  Reply With Quote
Old 05-11-2012, 11:24   #3448 (permalink)
Freak Poster
 
Join Date: Mar 2011
Posts: 462
Member: 1528218
Status: Offline
Thanks: 36
Thanked 85 Times in 63 Posts
I'm trying to fully simulate the Truck NC in Home, is there anyone who had a decent look on how the DLL handles the data*.chk files?
  Reply With Quote
Old 05-14-2012, 04:19   #3449 (permalink)
Junior Member
 
Join Date: Mar 2011
Posts: 10
Member: 1543686
Status: Offline
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Downunder35m View Post
Neither.
New Zealand is not part of Australia, so why would it be included in the AU maps?
The .dct file for the cams stays the same you only replce the cam files with newer ones, so no need to activate every time.
But to be perfectly clear : for NZ you need the NZ cams and the NZ map.

To my best knowledge the NZ cams are not included in the AU cams.
You are dead right Downunder....they are NOT in the AU package. Just been down the road and no warning. Put another SC Card back in with NZ cams on and all ok. Will have to now advise my contact that he was given wring info by Tomtom...thanks again
  Reply With Quote
Old 05-14-2012, 20:01   #3450 (permalink)
No Life Poster
 
dsa8310's Avatar
 
Join Date: Feb 2009
Posts: 2,563
Member: 973199
Status: Offline
Thanks: 204
Thanked 1,591 Times in 775 Posts
Any interest in quickgpsfix yet?

Any testing done with BT Console and hyperterminal/Windows (see post #2517) or minicom/Linux(/Mac) ?

I suspect that the presence of file /var/run/ppp.up might signal to PNDNavigator that the network got up, and then access to other on-line services could become possible even without the built-in GPRS modem/SIM... or not...
  Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
thread Thread Starter Forum Replies Last Post
TomTom v8 Firmware and Maps BuMobiles GPS devices , Navigators & Maps 5948 03-31-2013 10:47
TomTom v7 Firmware and Maps BuMobiles GPS devices , Navigators & Maps 3479 03-05-2013 21:55
how to install tomtom V6 software and maps on NAVMAN F20 sniper007 GPS devices , Navigators & Maps 4 11-06-2012 17:58
TomTom v6-7 and Route 66 v6 Firmware and Maps BuMobiles GPS devices , Navigators & Maps 4687 05-25-2012 15:52


All times are GMT +1. The time now is 02:37.



Powered by Searchlight © 2013 Axivo Inc.
- GSM Hosting Ltd. - 1999-2013 -
Page generated in 0.41835 seconds with 12 queries

SEO by vBSEO