Tool/software: Code Composer Studio
Hi,
I want to define a variable in the DPL-ISR.asm file, use ".if" to determine whether this variable can perform PI control, and can also call this variable in the C file.
I tried to use the following format to define but the error.
.bss _CurrnLoop, 1
.global _CurrnLoop
…
.if (#_ CurrnLoop == 1)
…
.endif
How do I change it, is there any relevant instruction manual. thank you very much!