Menu

Tree [5d93c3] master /
 History

HTTPS access


File Date Author Commit
 bluerobin 2010-07-30 Pavel Pavel [770d4e] Merge branch 'emu' of http://github.com/poelzi/...
 contrib 2010-07-24 Marc Marc [e7ece5] simple graphical plotter
 driver 2010-08-05 Pavel Pavel [5d93c3] Allow emulator to hook into display routines an...
 emu 2010-07-30 Pavel Pavel [770d4e] Merge branch 'emu' of http://github.com/poelzi/...
 gcc 2010-07-30 Pavel Pavel [770d4e] Merge branch 'emu' of http://github.com/poelzi/...
 include 2010-07-27 Daniel Poelzleithner Daniel Poelzleithner [577e09] Merge branch 'master' of ../chronos
 logic 2010-07-30 Pavel Pavel [770d4e] Merge branch 'emu' of http://github.com/poelzi/...
 simpliciti 2010-07-22 Marc Marc [1667cc] Merge branch 'master' of http://github.com/poel...
 tools 2010-07-30 Pavel Pavel [770d4e] Merge branch 'emu' of http://github.com/poelzi/...
 .gitignore 2010-07-18 Eric Allen Eric Allen [a35c63] Ignore build output
 NEWS 2010-06-22 Daniel Poelzleithner Daniel Poelzleithner [b85d8d] new docs
 README 2010-07-25 Daniel Poelzleithner Daniel Poelzleithner [075b98] add another compile error to faq
 TODO 2010-07-22 Marc Marc [1667cc] Merge branch 'master' of http://github.com/poel...
 config.h 2010-07-30 Pavel Pavel [770d4e] Merge branch 'emu' of http://github.com/poelzi/...
 even_in_range.s 2010-07-30 Pavel Pavel [770d4e] Merge branch 'emu' of http://github.com/poelzi/...
 ez430_chronos.ewd 2010-07-10 Daniel Poelzleithner Daniel Poelzleithner [d39ef8] readd bluerobin code
 ez430_chronos.ewp 2010-07-10 Daniel Poelzleithner Daniel Poelzleithner [d39ef8] readd bluerobin code
 ezchronos.c 2010-07-30 Pavel Pavel [770d4e] Merge branch 'emu' of http://github.com/poelzi/...
 makefile 2010-08-05 Pavel Pavel [387509] emu target needs build directory.

Read Me

== Status ==

Works, but in development :-)

== Requirements ==

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

== Supported Compilers ==

msp430-gcc4
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