EmbeddedRelated.com
Forums

IAR error message "Driver does not support code coverage"

Started by dsfb sent by Nabble.com November 22, 2005
I 'm programming in C and when I debug the app the function calls jump to extange places like if the SP was crazy.

The only message the compiler/linker throws me is "Driver does not support code coverage" (No errors or Warnings)

Can somebody help me plz

Beginning Microcontrollers with the MSP430

dsfb,

Code coverage is a plug-in that isn't supported for your target - it doesn't
have anything to do with a corrupt
Stack Pointer (SP). Sounds like you have a memory issue - such as maybe
allocating memory that doesn't
exist somehow (maybe a bunch of array declarations, etc).

Turn off the support for code coverage by deselecting it.

See if you are getting any warning messages that could pertain to memory
issues. Turn on all possible warnings/
compiler/linker messages. Maybe you're using the wrong memory map for your
target.

Regards,
John