Hi There
Im looking at using the C28x signal generator library with the F2802x with a project that originally forked from the DC/DC Multi-Led example
Instead of having a dedicated loop or ISR as shown in the examples fo the signal generator library, I would like to have it use the asm ISR already used in the DC/DC Multi-LED example
I have tried to add the a call to the SGENTI_1_calc defined in sgti1c asm file but it is not recognised.
Im very unsure of what I am doing with this assembly (I have only used 8051 asm before MUCH simpler!)
How can I make the signal generator asm routines available to the DPL_ISR.asm? and should I handle a return value?
Thanks
EDIT: What I have done so far is add the SGEN Lib asm directory to the compiler include search path and used '.include "sgtic.asm"' at the start of the DPL_ISR asm file.
I though this would give access to the routine _SGENTI_1_calc that is def'd in sgti1c.asm, but if I insert "SGENTI_1_calc" into the DPL_ISR asm code the assembler says that this is an Invalid mnemonic.... :(