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.
Tool/software: Code Composer Studio
_Cla1Task1:
MMOV32 MR0, @_Iq_Out
MMOV32 MR1, @_E0Cos
MMPYF32 MR0, MR0, MR1
MMOV32 @_IApha, MR0
_Cla1T1End:
_Cla1Task1:
MNOP
MNOP
MNOP
_Cla1T2End:
For example, the above program, how does the compiler recognize the end of the CLA task in assembler file?Does the compiler automatically recognize the statement “_Cla1T1End” as the end of CLA Task 1 without the need to make statement of “_Cla1T1End” in the C program? If I need to make a declaration in C program, how do I make it?