Difference between revisions of "Maemo"
(→Compiling Navit from source) |
(→Starting GPSd manually) |
||
Line 48: | Line 48: | ||
Navit does not necessarily start the GPS subsystem (driver and gpsd) on the Tablet. Therefore you need to do this by starting another application (Map, Gpxview) which is capable of starting it. This "helper application" needs to run as long as you want to use Navit. | Navit does not necessarily start the GPS subsystem (driver and gpsd) on the Tablet. Therefore you need to do this by starting another application (Map, Gpxview) which is capable of starting it. This "helper application" needs to run as long as you want to use Navit. | ||
+ | |||
+ | As of SVN 1843 (Dec 19, 2008) Navit for N800 will autostart gpsd if your GPS BT receiver is on. For N810 this will work witht he internal GPS receiver as well. | ||
=== Starting GPSd automatically === | === Starting GPSd automatically === |
Revision as of 03:12, 21 December 2008
Contents
General instructions
- Install Navit. There's a Maemo project which provides some (currently rather dated) binaries. Alternatively, there are some "bleeding edge" binaries available in the download section.
- Get maps. It is possible to use Garmin maps, but maps of openstreetmap, a wiki like world map, also should do a good job. There are several sources where you can download Navit maps based on openstreetmap data. Save them anywhere on your device, e.g. somewhere on the flash memory.
- Configure Navit. Search for the file navit.xml as superuser root. Replace the path to the map file to fit your device and configuration:
- <mapset enabled="yes">
- <map type="binfile" enabled="yes" data="/media/mmc2/map/planet.bin"/>
- </mapset>
Developers may need to compile the source within the scratchbox environment, which currently (2008-12-20) will not compile out of the box. You need to have Scratchbox and the Nokia SDK installed. Place the source inside the scratchbox environment, log in to scratchbox, cd to the source directory and execute the following commands:
./autogen.sh ./configure --disable-binding-python --disable-gui-sdl --disable-samplemap --enable-avoid-float --enable-avoid-unaligned make make install
Others have used slightly different options for configure:
- ./configure --prefix=/home/user/navit --disable-garmin --disable-samplemap --disable-hildon --disable-binding-python --disable-graphics-sdl --disable-gui-sdl --disable-postgresql --disable-svg2png
- ./configure -q -disable-binding-python -disable-gui-sdl -disable-samplemap -enable-avoid-float -enable-avoid-unaligned -prefix=/usr
If you are using SDK 4.1.1, then you will see errors from autogen. Those can be resolved by setting SBOX_DEFAULT_AUTOMAKE=1.9;export SBOX_DEFAULT_AUTOMAKE.
As of SVN 1843, --enable-hildon is no longer required.
As of SVN 1843 you should get libgpsbt-dev before compiling. (fakeroot apt-get libgpsbt-dev in scratchbox)
A debian directory is available so that you can build your own packages. download and unpack in your top Navit source directory. Build a .deb file by using 'fakeroot ./debian/rules binary'. the .deb file will appear in the directory above where you are.
BTW: The Hildon support seems not to be that perfect yet. Presently it consists only of +,- and full screen buttonns plus gpsd autostart.
Configuration options
- Navit offers several GUIs. If you are not pleased with the GTK GUI, maybe you want to use the "internal" GUI.
- It is possible to make Navit recording and displaying a track. First let Navit record the track in the vehicle section, then add the resulting file to the mapset section:
- <log type="textfile" data="/home/user/.navit/tracks/ActiveLog.txt" flush_size="1000" overwrite="30" />
- ...
- <map type="textfile" enabled="yes" data="/home/user/.navit/tracks/ActiveLog.txt"/>
If everything went fine, Navit can be started from the menu and you should see the map on the display. In the upper panel of the tablet, you should see a satellite icon with a green tail, indicating that your device has a GPS fix. If so, Navit should show your current position on the map.
Starting GPSd manually
Navit does not necessarily start the GPS subsystem (driver and gpsd) on the Tablet. Therefore you need to do this by starting another application (Map, Gpxview) which is capable of starting it. This "helper application" needs to run as long as you want to use Navit.
As of SVN 1843 (Dec 19, 2008) Navit for N800 will autostart gpsd if your GPS BT receiver is on. For N810 this will work witht he internal GPS receiver as well.
Starting GPSd automatically
Some additional details (Nov 28, 2008): I spent an evening getting Navit working on my N800, here are what else you need to do on Diablo with a Bluetooth GPS
- Install bluez-utils-test, have to get this from a Chinook repository for now
- Follow the instructions here [1]
- Change your navit.xml vehicle definition to use file:/dev/rfcomm0 instead of gpsd
Now each time you start Navit, the GPS connection gets made for you. This avoids workarounds such as starting Map or gpsview. --Gerritv 14:13, 29 November 2008 (CET)
Notes
- The navit project now has a project page on the maemo garage site, https://garage.maemo.org/projects/navit/.
- The first binary version of navit for the Internet Tablets was created on another site, http://www.tecdencia.net/navit/.