As Jakob said it means you have too much code. So its time to learn how to figure out what is going into your build. Once you do that you can tease apart your application and remove bits you don't need shrinking the code being built. That of course is left as an exercise for the student.
You can see exactly with nesc modules are being included in your build using: *make telosb verbose* And you can see how the code is actually laid out using: *msp430-nm build/telosb/main.exe* This only works for images that have built (your code doesn't build so won't work yet). You can remove your new code and see how things build without it and where everything is. Something else that is fun is objdump. Something like: *make debugopt telosb* *msp430-objdump --disassemble --source build/telosb/main.exe* And as always Jim, the Secretary will disavow any knowledge of your activities. But you may or may not get the reference :-). Mission Impossible from the 1966 TV series. Good luck. Now what exactly are you doing? I assume that ECC is error correction. But what are you protecting and such. Details please. I used to do Information Theory. Just curious as to what you are working on. Thanks. eric On Wed, May 11, 2011 at 9:26 AM, euchi Manel <[email protected]> wrote: > hi, > i try to integrate ECC in my application but when i do" make telosb > install" > i find this error: > > (msp430-ld: region text is full (build/telosb/main.exe section .text) > msp430-ld: section .vectors [0000ffe0 -> 0000ffff] overlaps section .text > [00004 > 000 -> 000118fb] > msp430-ld: build/telosb/main.exe: section .vectors lma 0xffe0 overlaps > previous > sections) > > Does anyone have any idea how to solve this? > I would really appreciate the help I get! > > Regards > > > _______________________________________________ > Tinyos-help mailing list > [email protected] > https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help > -- Eric B. Decker Senior (over 50 :-) Researcher
_______________________________________________ Tinyos-help mailing list [email protected] https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help
