Other Parts Discussed in Thread: C2000WARE
Hi champs,
I am evaluating the C2000Ware ERAD example and below are my test conditions,
- CCS v10.4.
- CGT v21.6.0.LTS.
- C2000Ware v4.03 example project erad_ex5_restricted_write_detect.
When I use RAM configuration to run that example project, everying gose well. However, when I use FLASH configuration and download that project, the code stops at the beginning of main() and I find that the ERAD owner is set to debugger automatically. The ERAD owner is debugger means that the example code cannot modify the ERAD regiseters, the code stops at below function when I hit Resume icon and run the software.
void __error__(const char *filename, uint32_t line)
{
//
// An ASSERT condition was evaluated as false. You can use the filename and
// line parameters to determine what went wrong.
//
ESTOP0;
}
Then I try to execute that example project standalone, F28388D boot from flash and that software works well, I can test the function via Terminal. I guess that ERAD owner problem when I use CCS FLASH configuration is due to CCS debug function, do you know how to resolve this CCS debug problem?
Regards,
Luke