Hi,
Creating a project for DSK6713 in CCS 5.5 that includes interrupts, i receive some times as warning and some time as an error the following:
Function declared implicitly for the comm_intr procedure that is provided by Chassaing book.
I have included the CSL and the BSL files, the CSL and BSL lib files, and inserted in the project's workspace the following: C6713dsk.cmd, c6713dskinit.c, c6713dskinit.h, dsk6713_aic23.h, Vectors_intr.asm
Here is my code.
#include "dsk6713.h"
#include "dsk6713_aic23.h"
int mark= 0;
interrupt void c_int11()
{
// Perform some actions
return;
}
void main ()
{
comm_intr();
while(1){
;
}
}
I cann't understand , why it can't see the comm_intr procedure...