![]() ![]() |
Oct 17 2006, 09:14 AM
Post
#76
|
|
![]() Group: Members Posts: 1,014 Joined: 4-January 05 From: Enschede, The Netherlands Member No.: 6,107 |
QUOTE(speculatrix @ Oct 17 2006, 04:42 PM) I have permission to publish the website of the linux-on-navman site, there's nothing about TTN on it *yet*. http://www.duff.dk/navman/ it has OE support as well now (took me like 20 seconds) |
|
|
|
Oct 17 2006, 09:23 AM
Post
#77
|
|
![]() Group: Admin Posts: 3,281 Joined: 29-July 04 From: Cambridge, England Member No.: 4,149 |
QUOTE(koen @ Oct 17 2006, 06:14 PM) QUOTE(speculatrix @ Oct 17 2006, 04:42 PM) I have permission to publish the website of the linux-on-navman site, there's nothing about TTN on it *yet*. http://www.duff.dk/navman/ it has OE support as well now (took me like 20 seconds) do you have a one of these devices yourself? |
|
|
|
Oct 17 2006, 09:41 AM
Post
#78
|
|
![]() Group: Members Posts: 1,014 Joined: 4-January 05 From: Enschede, The Netherlands Member No.: 6,107 |
QUOTE(speculatrix @ Oct 17 2006, 05:23 PM) QUOTE(koen @ Oct 17 2006, 06:14 PM) QUOTE(speculatrix @ Oct 17 2006, 04:42 PM) I have permission to publish the website of the linux-on-navman site, there's nothing about TTN on it *yet*. http://www.duff.dk/navman/ it has OE support as well now (took me like 20 seconds) do you have a one of these devices yourself? I haven't, but I might buy one since I would like to have a device that can log gpx tracks for me. Right now a 770 + bluetooth gps does the job for me |
|
|
|
Oct 17 2006, 12:18 PM
Post
#79
|
|
![]() Group: Admin Posts: 3,281 Joined: 29-July 04 From: Cambridge, England Member No.: 4,149 |
QUOTE(koen @ Oct 17 2006, 06:41 PM) I haven't, but I might buy one since I would like to have a device that can log gpx tracks for me. Right now a 770 + bluetooth gps does the job for me there's a really excellent logger that you simply install on a tomtom go's SD card and it provides GPX track logs (can import into google earth), add POIs etc. http://web.tiscali.it/macri/Event_Logger/ You could almost certainly port it to 770+GPS combo. |
|
|
|
Oct 17 2006, 12:59 PM
Post
#80
|
|
![]() Group: Members Posts: 1,014 Joined: 4-January 05 From: Enschede, The Netherlands Member No.: 6,107 |
If you have gpsd you can have a much lighter solutions:
CODE #!/bin/sh echo "PADSV" | nc -w 1 0 2947 Do that every minute and log to a file. When you get home you run this script over the log: CODE #!/usr/bin/awk -f BEGIN { printf("<?xml version=\"1.0\"?>\n<gpx version=\"1.1\" creator=\"Koen Kooi\" >\n\t<trk>\n\t\t<trkseg>"); } { printf("\t\t\t<trkpt lat=\"%s\" lon=\"%s\">\n\t\t\t\t<time>%s</time>\n\t\t\t\t<ele>%s</ele>\n\t\t\t</trkpt>\n",$1,$2,$4,$3); } END { printf("\t\t</trkseg>\n\t</trk>\n</gpx>\n"); } That should give you a valid gpx file |
|
|
|
Nov 3 2006, 01:03 PM
Post
#81
|
|
|
Group: Members Posts: 19 Joined: 2-October 06 Member No.: 11,617 |
I'm searching people who can help me to port the tomtom sound driver module to zaurus.
We have sources of tomtom original driver ,they use the WM8711 soundchip and we use the WM8750 (on SLC3000) (they must not be too different). I have tried to get all syscall from ttn about the sound, but i can't use them to output sound trough /dev/dsp. I think that the solution is to write a kernel module driver to have the tomtom sound on zaurus, but i don't know how to do that. Current state is : - Display of ttn on SLC3000 OK - Touchscreen is OK - GPS via any serial gps device is OK - Planning route is OK Config: - SL-C3000 - OZ3541 - Update kernel with QVGA mode - USB host cable - Bluetooth D-LINK DBT-120 dongle.(i'm going to try a CF bluetooth card) - A GPS bluetooth receiver from ebay. Zomtom is already useable, i have used it many times in my car. The only thing that is missing is the sound. Thanks to Speculatrix and www.duff.dk for their help ! escuse my poor english, i'm french. I hope that some people can do someting for zomtom sound. Thanks |
|
|
|
Dec 28 2006, 10:07 AM
Post
#82
|
|
|
Group: Members Posts: 352 Joined: 3-June 04 From: Virginia, US Member No.: 3,563 |
I am interested in this and would like to get the maps. I see several sellers on eBay selling the maps on SD. I assume those are the ones that are not legit. I searched around on eBay and did not see any cheap devices. I did see a number that are selling the TomTom Navigator software (Palm/WinCE) that seems to include the maps. Will this get me what I need. It would seem to be an inexpensive way to get a legitimate set of maps. I am in complete agreement with you that we don't want to take $$ out of the pockets of folks who are following the GPL/LGPL and sharing with the community. I have a Garmin etrex that I have used with gpsdrive, etc. The other solutions were so feature limited that I found it easier just to use the etrex. This looks like a great deal.
|
|
|
|
Dec 28 2006, 06:11 PM
Post
#83
|
|
![]() Group: Members Posts: 1,565 Joined: 7-April 05 From: Sydney, Australia Member No.: 6,806 |
so how exactlly are they outputting sound? is it a user space driver that maps the mem segment (via /dev/mem) and plays with the mem mapped regs direcctly or is it a oss thing
if its oss i can help as i have just spent some time mastering alsa sound configs with oss and dmixing if its a mem mapped thing then i could posibly help as well as low level hardware is my thing |
|
|
|
Dec 29 2006, 12:00 AM
Post
#84
|
|
|
Group: Members Posts: 19 Joined: 2-October 06 Member No.: 11,617 |
QUOTE(Da_Blitz @ Dec 29 2006, 03:11 AM) so how exactlly are they outputting sound? is it a user space driver that maps the mem segment (via /dev/mem) and plays with the mem mapped regs direcctly or is it a oss thing They use mapping of memory via mmap. All sound command are send by ioctl to a special device /dev/barc_snd. They use their own driver called coolsound, source is aviable as GPL. QUOTE Good, it's the last part of porting ttn to zaurus, and when sound is ok, i think that we will can send our work to tomtom company and ask them to release an official tomtom for zauruses. regards, |
|
|
|
Dec 29 2006, 06:20 AM
Post
#85
|
|
|
Group: Members Posts: 26 Joined: 3-December 03 Member No.: 1,040 |
I think I have all the bits together to give this a go now.
C3100 running OZ (2.6 kernel) An old TomTom go to get the files from Bluetooth dongle and bluetooth gps receiver Are there any detailed instructions on how to get this running? When I tried some the instructions posted earlier on this thread, I didn't get very far, chrooted into /home/tomtom then ran ttn and my zaurus resets. Are there devices I need to create, things like that? Would be keen to have this working, even without sound. Cheers, Sue |
|
|
|
Dec 29 2006, 10:54 PM
Post
#86
|
|
![]() Group: Members Posts: 1,565 Joined: 7-April 05 From: Sydney, Australia Member No.: 6,806 |
coolsound seems to be an alsa device, hmmm
why not symlink from /dev/barc_snd to /dev/oss and then try linking it to the /dev/snd/control or /dev/snd/pcmC0D0p (PCM Card 0 Device 0 playback) i think that they are just using a diffrent node name/placment so the symlink should fix that, lets hope anyway. now to work out which node it needs to be attached to (my bets on the pcmC0D0p node) when i ment memorey mapped i ment mapping of /dev/mem and twiddling the bits in user space. looks like they didnt do that (thank god) as emulating that would be a B$%*&%^ |
|
|
|
Dec 30 2006, 06:39 AM
Post
#87
|
|
![]() Group: Admin Posts: 3,281 Joined: 29-July 04 From: Cambridge, England Member No.: 4,149 |
QUOTE(offthefront @ Dec 29 2006, 03:20 PM) I think I have all the bits together to give this a go now. C3100 running OZ (2.6 kernel) An old TomTom go to get the files from Bluetooth dongle and bluetooth gps receiver Are there any detailed instructions on how to get this running? When I tried some the instructions posted earlier on this thread, I didn't get very far, chrooted into /home/tomtom then ran ttn and my zaurus resets. Are there devices I need to create, things like that? Would be keen to have this working, even without sound. Cheers, Sue Hi, yes, you have to have a /home/tomtom/dev and a /home/tomtom/proc to mimic the real thing. I'm on vacation at the moment (sad, aren't I, still finding time to visit the forums!), and will post some more info soon as I can! Paul |
|
|
|
Dec 30 2006, 04:35 PM
Post
#88
|
|
![]() Group: Members Posts: 1,565 Joined: 7-April 05 From: Sydney, Australia Member No.: 6,806 |
i assume that there needs to be a bind mount on those dirs (ie mount --bind /dev /heme/tomtom/dev and mount -t proc proc /home/tomtom/proc, thank you gentoo)
|
|
|
|
Jan 1 2007, 06:19 AM
Post
#89
|
|
![]() Group: Admin Posts: 3,281 Joined: 29-July 04 From: Cambridge, England Member No.: 4,149 |
QUOTE(Da_Blitz @ Dec 31 2006, 01:35 AM) i assume that there needs to be a bind mount on those dirs (ie mount --bind /dev /heme/tomtom/dev and mount -t proc proc /home/tomtom/proc, thank you gentoo) you can always copy the /dev directory /proc can be filled with dummy files on the c3100 you can repartition and make a really big hdd2 ext3 partition and store the whole of tomtom with maps; on an 860 or 1000 you will need to ensure that the flash card is mounted where ttn can see it, /home/tomtom/mnd/sdcard if I remember correctly. |
|
|
|
Jan 4 2007, 08:46 AM
Post
#90
|
|
|
Group: Members Posts: 19 Joined: 2-October 06 Member No.: 11,617 |
QUOTE(Da_Blitz @ Dec 30 2006, 07:54 AM) coolsound seems to be an alsa device, hmmm why not symlink from /dev/barc_snd to /dev/oss and then try linking it to the /dev/snd/control or /dev/snd/pcmC0D0p (PCM Card 0 Device 0 playback) i think that they are just using a diffrent node name/placment so the symlink should fix that, lets hope anyway. now to work out which node it needs to be attached to (my bets on the pcmC0D0p node) I have tried that but don't work, it's not the same IOCTL. It look like an alsa device, but they use another API. I think that we need to make a kernel module for the sound. |
|
|
|
![]() ![]() |
|
Lo-Fi Version | Time is now: 18th June 2013 - 08:21 PM |