hi everyone
i am using CCS 5.5 to work on TMS320C6713. i used to work on CCS3.3 and moved to 5.5 recently... when i am implementing one of the examples that come with CCS3.3 (audio_app; a project that takes sound in and produce it out back using BIOS SWI), i copied the same code and did the same configuration for the TCF file.
what the code should do: input the voice from the codec (then McBSP) to a Buffer via EDMA, when buffer is full, the EDMA should trigger HWI 8, which will dispatch to SWI (named processBuffer) and the interrupt the CPU will copy data in buffer to another Xmt buffer and another EDMA should get the data out to the codec.
the problem is that the Rcv Buffer is getting filled (indicating the EDMA is working) but HWI is never getting triggered, so SWI is not occurring as well.
another thing: CCS is giving me warnings about the syntax of some macros (such as EDMA), knowing that they are just copied and pasted from the CCS3.3 project files.. should there be any change in syntax?