Hi! I am successfully using CCS Core edition for editing and compiling source code in the ez430-chronos suite.
Using the limited build configuration, all source files in the "driver" folder are marked as "Excluded from Build", and the pre-compiled library "ez430_chronos_drivers.lib" is included, in order to keep source code size within limits.
My problem is that I need to tweak one of the "driver" files, namely "timer.c". Simply removing the "Excluded from Build" tag for "timer.c" lets me compile without warnings so obviously the code is still within size limits, but my changes are ignored when I run the code probably because the object code from the pre-compiled library is used. Can I tell the linker to use my new object file (timer.obj) and let its functions override "ez430_chronos_drivers.lib"?
/Filip