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.

without system exit?why the examples codes are not running?

hi,

In Example program i run it on ccs 5.5. without system_exit it will not run.why?not include in example project.

  • Hi,

    Have you using TI provide example for your testing? If yes, Please share the project detail. Also provide your device part number(ex: c6678).

    The running task becomes Task_Mode_TERMINATED by calling Task_exit(), which is automatically called if and when a task returns from its top-level function. After all tasks have returned, the Task manager terminates program execution by calling System_exit() with a status code of 0. If you using System_exit() means you need to add "var System = xdc.useModule('xdc.runtime.System');" on your BIOS configuration(.cfg) file. Refer BIOS user guide for more information(SPRUEX3M).

    Thanks,