This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
I upgraded my computer, re-installed CCSV6, am able to build my 'old' projects, but when I try to debug, I get -
CortexR5: File Loader: Memory write failed: Unknown property "FlashBlankCheckToggle"
This is driving me bananas. What is broken and how do I fix it?
Dan,
Looks like the issue is in C:\ti\ccsv6\ccs_base\DebugServer\propertyDB\TMS570xC_RM57_4MB_FlashProperties.xml.
The FlashBlankCheckToggle property id is commented out.
Remove the comment out operators "<-- ! till --> to include this function.
Also I see have a different action than the other devices at the end of the file and should be updated as well
Replace the three instances of BankToggle# <0, 1, and 7>
<action>DPActiveDebugSession.flash.performOperation("BankToggle0")</action>
With
<action>for( var i = 0; DPActiveDebugSession.options.optionExist( "FlashBank0Sector" + i ); ++i ) { DPActiveDebugSession.options.setBoolean( "FlashBank0Sector" + i,!DPActiveDebugSession.options.getBoolean( "FlashBank0Sector" + i ) ); }</action>
Regards,
Forum Support
I think it turns out that I just had version issues. When my old laptop was turned in and I did a fresh install of CCS and went from 6.0.1.00040 to 6.1.0.00104, this is when I discovered issues, including what initiated this forum post. I backed up a version and things seemed to get resolved (but not without a lot of fooling with settings). I looked at the version change notices (high level, not deep dive) between 040 and 104 but didn't see anything relevant. But I think there might be. Any insight from you guys regarding the version update path in terms of debug files? If so, it should be clearly pointed out.
Thanks,
Dan