Linux TomTom GPS Watch Utilities
Provides programs for communicating with TomTom GPS watches and processing the data they collect.
ttwatch
- USB communications program for performing various operations
with the watch, including downloading activity data, updating
GPS data, and updating firmware.ttwatchd
- Daemon program that automatically performs specified functions
when a watch is connected to the PC.ttbincnv
- Post-processor allowing conversion of the ttbin file formats
to either (currently) csv, gpx, kml or tcx files, using broadly
similar formats to the official TomTom file formats.ttbinmod
- Post-processor allowing modifications to be made to the ttbin
file. Currently, adding/modifying lap markers and truncating the
file at the end of the workout (last lap, goal completion etc)
are supported.ttbin2mysports.sh
- script that enabled uploading to a MapMyFitness account
that is linked to a MySports account. Automatically
converts the ttbin file to a TCX file before uploading.This program requires the following libraries to be compiled and installed before attempting to build it.
cmake
(required version 2.8 or higher).
Available from https://cmake.org/openssl
(tested against version 1.0.1f, other versions may work).
Available from http://www.openssl.orgcurl
(tested against version 7.38.0, other versions may work).
Available from http://curl.haxx.se/download.htmllibusb
1.0.16 or later (tested against version 1.0.19).
Available from http://sourceforge.net/projects/libusb/protobuf
3.6.0 or later (tested against version 3.6.0)
Available from https://github.com/protocolbuffers/protobufprotobuf-c
1.3.0 or later (tested against version 1.3.1)
Available from https://github.com/protobuf-c/protobuf-cPrebuilt packages should be available for most systems using the system's
built in package manager (dpkg, yum, apt, rpm etc...). Make sure that the
-dev
version of the packages (eg. libssl-dev
, libcurl-dev
, libusb-1.0-0-dev
)
are installed so that the headers are available.
Under Cygwin install protobuf-c
from source; the rest are available
through packages. Install libssl-devel
, libcurl-devel',
libusb-devel,
libprotobuf-devel. In order to use your the
protobuf-clibrary compiled from source, run *cmake* as
PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH cmake .`
Under MacOS one way to build ttwatch is to install the following package using brew then follow the standard build instructions below.
brew bundle
The ttwatch
binaries are built using cmake. Both in-source or out-of-source
builds are supported. A simple in-source build is done as follows:
$ cmake .
$ make
$ sudo make install
An out-of-source build can be done as follows:
$ mkdir build
$ cd build && cmake ..
$ make
$ sudo make install
The advantage of the out-of-source build is that to do a clean, you just do
rm -rf build
to remove the build tree so you can start again.
In order to have permission to access the USB devices when running as anyone other than root, a udev rule must be set up to allow access for unprivileged users. The rule I have set up is:
$ cat /etc/udev/rules.d/99-tomtom.rules
SUBSYSTEMS=="usb", ATTRS{idVendor}=="1390", ATTRS{idProduct}=="7474", SYMLINK+="tomtom", GROUP="usb", MODE="660"
SUBSYSTEMS=="usb", ATTRS{idVendor}=="1390", ATTRS{idProduct}=="7475", SYMLINK+="tomtom", GROUP="usb", MODE="660"
SUBSYSTEMS=="usb", ATTRS{idVendor}=="1390", ATTRS{idProduct}=="7477", SYMLINK+="tomtom", GROUP="usb", MODE="660"
The value for idProduct
depends on the model of watch that you use. For
original models, 7474
is correct. For Spark watches, the idProduct
value is
7477
, although 7475
has also been found. Please check dmesg
output, for
the correct value.
The ttwatch
distribution includes a 99-tomtom.rules
file as above. To use
this file, copy it to the udev rules folder as follows:
$ sudo cp 99-tomtom.rules /etc/udev/rules.d
After creating the udev rule, you need to reload the rules to make udev aware of them, by running:
$ sudo udevadm control --reload-rules
The above udev line basically gives access to USB devices to members of the "usb" group. Some systems already have a "usbuser" group, and feel free to reuse that one in the udev line.
If you do not reuse an existing group, then you need to create the "usb" group and add yourself to it using:
$ sudo addgroup usb
$ sudo usermod -a -Gusb <your_username>
Note: If you leave out the -a option on usermod, you will remove your user from every group except "usb", rather than just adding "usb" to the list of groups the user belongs to, so be careful... Note: You will have to log out and then log back in to see the change in group membership.
The makefile includes a special rule (install_udev
) that will perform all
these steps to make installation easier. It will associate the user that
runs make (as printed by the logname
command) to the usb group. Simply run:
$ sudo make install_udev
If your system uses devfs
instead of udev
(such as FreeBSD), configure as follows.
Firstly, add the following lines to /etc/devfs.rules
:
[usb_devices=10]
add path 'usb/*' mode 0660 group usb
Next, add the following lines to /etc/rc.conf
:
devfs_system_ruleset="usb_devices"
Lastly, create the usb
group and add the required user to it (these commands
must be run as root
):
# pw groupadd usb
# pw groupmod usb -m <your_username>
Under Windows you need to configure a USB device driver for the watch, such as Zadig. You need to locate the watch (e.g. listed as Workout Drive Interface 0), and set its driver to WinUSB. Ensure that the vendor id matches TomTom (1390). Do not change the driver for the watch's storage interface (e.g. listed as GPS Watch Music Drive Interface 1). If drivers for the watch were previously installed, you need to replace the driver in the watch entry using the HidUsb driver, not the entry using the USBSTOR driver.
Before being able to use most of the commands the program provides, the watch needs to be set up, similar to the initial setup routine that the Windows client does. This is done by running
ttwatch --initial-setup
Doing this will create a default XML preferences file on the watch, as well as create default races for the different activities. Most of the functions rely on the XML preferences file existing, so this must be done first.
The ttwatchd program runs as a daemon, which will wait for a watch to be connected, then automatically perform whichever operations are specified on the command line. The following four operations are supported, and at least one of them must be specified to start the daemon:
--get-activities
: Download the activity files and store them, including
converting them to other file formats as specified in the watch preferences
downloaded from the watch.--update-gps
: Updates the GPSQuickFix information in the watch from the
internet.--update-fw
: Checks for firmware updates, and updates the firmware in the
watch if newer firmware is found.--set-time
: Sets the time on the watch to match the local system time.All four options can be specified with the -a
(or --auto
) option
The daemon must be started as root (run by init
or sudo
), but the --runas
parameter can be specified to provide an alternative user (and optionally
a group - such as the usb group mentioned above) to run as. Note that if the
default group for the user does not have access to the USB devices, then group
must be specified on the command line, For example, if user fred
has a default
group of fred
(which is usual for most linux systems), but the group with access
to the USB devices is called usb
as above, then the parameter will need to
be --runas fred:usb
, otherwise there will be permissions errors trying to
communicate with the watch. Note that in this case fred
will also need to
be a member of the usb
group, otherwise there will be permissions errors also.
Note when starting the daemon with the --runas
parameter the home directory used
as the default activity store location ~/ttwatch
is still the home of the root
user who is starting the daemon and not the home of the user running the daemon.
In this case the activity store location must be specified on the command line
or in the configuration file /etc/ttwatch.conf
pointing to a location where the
unprivileged user has write access.
Note: The daemon is not supported under FreeBSD as the FreeBSD version of
libusb does not support hot-plug detection and causes compilation
errors. To resolve this, run cmake -Ddaemon=off
to force the
compilation to remove the daemon support.
The ttwatch program has support for multiple watches. When running from the
command line a list of available watches can be displayed using the --devices
option. A particular watch can be selected using the -d
option with two
different parameters possible:
Both pieces of information are displayed when listing available watches
with the --devices
option.
When running as a daemon and the watch serial number or name are specified, the daemon will only process that particular watch. This can be used to store the activities from multiple watches in different users' home areas by starting multiple instances of the daemon running as different users, specifying different watches.
Many people have wondered why they are not getting activity files downloaded
to the computer even though they can see history entries using the
--list-history
option. Put simply, the two are almost unrelated. The activity
data is logged every second and contains all the information collected during
the activity. The history data is a summary of the activity data that is
generated when the activity is completed. The history data is small, and is
retained on the watch permanently (unless manually deleted) to support the race
function and to view past activity details on the watch itself. The activity data
is large, and is deleted from the watch as soon as it is successfully downloaded
to free up space on the watch for new activities. This means that each activity
can only be downloaded once. If it is subsequently deleted from the computer,
it cannot be recovered (unless it is backed up separately).
There are various options that can be given to the ttwatch program that read
and write raw data to/from the watch. Used incorrectly, these could destroy
the contents of the watch. For this reason, they are disabled by default. To
enable these options, run cmake
with the -Dunsafe=on
option. Note that
I don't guarantee what will happen if you use these options without really
knowing what you are doing.
The ttwatch programs supports loading some settings from config files. Three config files can be used: global, per-user, and per-watch. They are located in the following locations:
/etc/ttwatch.conf
~/.ttwatch
[activity-store-location]/[watch-name]/ttwatch.conf
This means that some settings can be overridden by specific users or by which watch is being used. Note that the per-watch settings are used either by the daemon (when a watch is connected), or when downloading activities from the command-line, not for any other operations. The per-user config file is not used when being run as root.
The config files are very simple, and are just lines in a "option = value" format. '#' is used to denote a comment; anything after a '#' is ignored. Applicable options (not case sensitive) and their values are as follows:
/etc/ttwatch.conf
file, and indicates which user (and optionally which group) the
daemon runs as, similarly to the command-line argument. An
error is shown if this option is specified in a non-global
config file. This is a string value.-d
(--device
)
command-line parameter. Note that only one device can be specified
at the moment (if anyone wants to modify the code to work with
multiple device names here, feel free to send me a patch). This is
a string value.-h
or --help
command line options). This
list can be either space- or comma-separated, or a combination
of the two. This is a string value.https://gpsquickfix.services.tomtom.com/fitness/sifgps.f2p{DAYS}enc.ee
.
The {DAYS}
part is changed according the the setting of
Ephemeris7Days
.The following options only take effect when running the ttwatchd
daemon:
Boolean values can have a value of ('y', 'yes', 'true', 'n', 'no' or 'false'). These values are not case-sensitive.
An example global config file to set the activity store location, default daemon user and group, and normal activities when a watch is connected could be:
ActivityStore = /mnt/data/watch
RunAsUser = jsmith:usb
GetActivities = true
UpdateFirmware = false
UpdateGPS = true
SetTime = true
EphemerisURL = https://gpsquickfix.services.tomtom.com/fitness/sifgps.f2p{DAYS}enc.ee
A per-user config file could be added to specify a list of file formats to make:
Formats = csv,gpx,tcx
It may be possible to reset a watch with damaged firmware or file structure using the Recovery Mode, which requires TomTom's official MySports Connect software (Windows or Mac only): [information from TomTom support] (http://us.support.tomtom.com/app/answers/detail/a_id/17394).
Watches with extremely old firmware (prior to 1.8.x) may not work with the
ttwatch
software. In this case, the solution is to use the official MySports
Connect software to perform a firmware update. After this, the ttwatch
software will work.
Note that I have not tested these, and do not endorse or provide support for them, nor guarantee their functionality or safety. This list is for information only.