I received my Ez430 Chronos Wireless watch development kit yesterday. A watch with temperature sensor, Pressure sensor, 3 axis accelerometer and a CC430-based development system for just $49. TI just priced it right…

There were some programs to use the watch as Mouse , Controlling the PPTs and so on. Still, I wasn’t so happy, because I didn’t get to see what’s “inside” the watch — “The Internals of the firmware”
Time for building the “OpenChronos” firmware for the watch. It is licensed under GPL v3 and we will get to see the code from here:
https://github.com/poelzi/OpenChronos/
Make sure you are connected to INTERNET.
Prepare the development environment in your PC or Laptop. Lets start with the MSPGCC tool chain.
# sudo su
# apt-get install makeinfo
# git clone git://mspgcc4.git.sourceforge.net/gitroot/mspgcc4/mspgcc4
# cd mspgcc4 && perl buildgcc.pl
select the default choices for the toolchain build options.
# make
The MSP430-GCC toolchain will get installed in the default path: /opt/msp430-gcc-4.4.5
Get the OpenChronos source:
# git clone https://github.com/poelzi/OpenChronos.git
If you havent read the GPLv3 License till now, please do so from the OpenChronos directory
# vim gpl-3.txt
Export the msp430 toolchain PATH
# export PATH=$PATH:/opt/msp430-gcc-4.4.5/bin/
Go to Openchronos directory, choose the modules for the firmware and build it.
This is similar to the ‘make menuconfig’ of the Linux kernel build procedure:
# make config
# make
If everything goes well, you will get these two files in “build” directory.
eZChronos.elf
eZChronos.txt
choose the ezChronos.txt (TI specific format for the CC430)
Go to the (default) path of eZ430 Control Center.
# cd /usr/local/eZ430-Chronos Setup/Control Center/Chronos Control Center
# ./eZ430-Chronos_CC_1_1.tcl
In the Control Center’s Flash tab, Select the “eZChronos.txt”. Set the Watch into “RFBSL” mode and start flashing.
You can see the percentage of flashing process in the LCD of the watch. Within a minute, the OpenChronos firmware will kick into action.
Switch the watch to “SYNC” mode and update the date and time from your Linux PC. Now wear it.. You are the “Man with the GPLv3 Watch”
With default TI firmware:

With OpenChronos firmware:

FAQ:
1. Why are you calling this post as “Man with the GPLv3 Watch”
I am a huge fan of James Bond Movies. This name is inspired by “The Man with the Golden Gun” (Roger Moore, Christopher Lee)
2. How do you understand that your watch uses the “original” TI firmware or OpenChronos firmware ?
1. Original firmware dont show the “day of the week”
2. OpenChronos firmware doesnt support the “BlueRobin” (Just press the * key to check it)
3. Most visible change is in the ‘ACC’ mode. It is shown as “ACC” in orignal firmware, where as it is “Acc” in OpenChronos firmware
Official list is as below:
* More Features that can be configured with make config
* Day of week
* Disable 12h support (saves space)
* Sleep Phase Clock – primary designed for http://github.com/poelzi/uberclock
* The wireless flashing starts differently:
Select RFBSL, Press DOWN to unlock, Press # long to start
* No BlueRobin support. BlueRobin is a closed source binary blob.
We don’t have a compatible object file for that
* Pressing STAR and UP long sets silent mode (no beep)
3. What is the use of using the GPLv3 Licensed firmware on your watch?
Technically, it gives me the freedom to read, study and modify the firmware of this watch.
Well, I just want to use Free Softwares in all the equipments that I use. This just makes me happy 
4. Where can I get more information ?
* http://processors.wiki.ti.com/index.php/EZ430-Chronos
* http://mspgcc4.sourceforge.net/