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.

TMS320F28386D: tms320f28386d

Part Number: TMS320F28386D

Hi,

I am trying to toggle a pin in  cpu1 core, when I am giving full run it is stopping at the following error function,

I am not able to understand why it is happening and what exactly the arguments filename and line. 

void __error__(char * filename, uint32_t line)

{

ESTOP0;

}

Thanks & Regards

k.Aravind,

9848992750.

  • Hi K.Aravind,

    Thanks for your question. I'll explain the arguments first, which will then help with debugging the cause of the __error__ call.

    If you add the arguments "filename" and "line" to the Watch Expressions window, you will see which filename is causing the error, and which line number within that filename causes the error. You can also hover over each in Code Composer Studio to view them if you don't want to add them to Watch Expression window.

      

    This should help you to debug where the problem is.


    Regards,
    Vince

  • Thanks Vince,

    It helped me.