Skip to content

OpenChronos - Open Source Firmware for the TI EZ430-Chronos Watch

Notifications You must be signed in to change notification settings

catsup/OpenChronos

 
 

Repository files navigation

This fork adds a variometer, an instrument indicating vertical speed,
essentially for use in free flight (paragliding, hang gliding, ...).

Initially based on the vario source coded by dkm, I ended up rewriting
that module completely.

- Pressing the "v" (down) button cycles between displays as follows:
        
    * vario (in m/s)
	  Displays a signed fractional value representing the ascent or
          descent speed in meters per second.

    * vario (in Pascal)
          Displays a signed integer value representing the ascent or
          descent speed in Pascal/second.

    * pressure (in hPa)
          Displays a signed fraction representing the pressure measured at
          the current altitude.

    * max Vz (in m/s)
          Displays the maximum vertical speed in meters/second.

    * min Vz (in m/s)
          Displays the minimum vertical speed in meters/second.
    
- A long press on the "#" button performs a context sensitive function:
    
    * during vario display, changes the vario sound mode:
      Off      (default, no symbol displayed)
      Ascent 0 (start beeping at 0.0m/s, beeper1 and beeper2 symbols
               displayed)
      Ascent 1 (start beeping at 0.1m/s, beeper1 symbol displayed)
      Both     (beep for up or down, beeper1 and beeper2 symbols
               displayed)

      Tone frequency, number and duration of beeps depend on climb rate.

    * during max/min Vz display, resets both the max and min values.
    
- The "record" icon is flashed at one second intervals, indicating that
  the watch is in vario mode and receiving pressure measurements.
          
  Note that the upper line must be in altimeter mode for the vario to
  work, as it relies on updates from the altimeter. If the altimeter
  is not active, the vario display shows "noAlt".

== Status ==

Works, but in development :-)

== Requirements ==

msp430-gcc4 http://mspgcc4.sourceforge.net/
make
python http://python.org

== Supported Compilers ==

msp430-gcc4
   Working combinations:
   gcc=4.4.3 binutils=2.20.1 libc=20100430

IAR msp430

Patches for more (more efficient) compilers are welcome :-)


== HOWTO ==

Copy gcc/intrinsics.h into [msp430-gcc-path]/msp430/include/intrinsics.h

To configure your image, run:

   make config

which will generate a config.h file that contains the settings for your build.

To compile the image run:

   make


It is HIGHLY suggested to make a clean build before you flash the image with:

   make clean main

== Problems ==

 * Compile / Link problems:
   If you get error messages like this one:

     msp430/bin/ld: build/eZChronos.elf section `.text' will not fit in region `text'
     .../msp430/bin/ld: section .vectors loaded at [000000000000ff80,000000000000ffff] overlaps section .text loaded at [0000000000008000,0000000000013343]
     .../msp430/bin/ld: region `text' overflowed by 13250 bytes
     collect2: ld returned 1 exit status

    or
     
     section .vectors loaded at [0000ff80,0000ffff] overlaps section .data loaded at [0000ff4e,0000ffcb]

   Your image is simply to large and will not fit into the flash. Try to disable some modules with make config and try again
   Or even better, send some patches that reduce code size ;-)

== Difference to the TI Firmware ==

 * 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)

== Usefull Tools ==
 * mspdebug - debugger, proxy for gdb, flasher, ...  
     http://mspdebug.sourceforge.net
 * msp430static - static analyzer for sourcecode
     http://msp430static.sourceforge.net/
   run 'make source_index' to index all source files

About

OpenChronos - Open Source Firmware for the TI EZ430-Chronos Watch

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 66.1%
  • Python 33.9%