Code Composer has the following options for debugging:
Verification Options: after the code/data is loaded to the device, sets the level of verification performed on it. This is done by reading back the code/data from the device’s memory and comparing it to the executable in the host. The choices are:
- Full: reads back the entire program loaded to the device. This is the default option for MSP430.
- Fast: reads back only the first and last 20 words loaded to the device. This is the default option for all other devices.
- No verification: no verification is performed
Does CCS produce an artifact for the memory verification? I want evidence that what was loaded matches what I gave the program.