Part Number: TMS320C6713B
Hi :D
Does somebody know how to solve warning 225-D. I read some information about it but I do not understand how to use it in a code.
This is my code :
/*
* main.c
*/
#include "stdio.h"
#include "stdlib.h"
#include "Include/csl.h"
#include "Include/dsk6713.h"
#include <Include/dsk6713_aic23.h>
Uint32 fs=DSK6713_AIC23_FREQ_8KHZ; //set sampling rate
#define DSK6713_AIC23_INPUT_MIC 0x0015
#define DSK6713_AIC23_INPUT_LINE 0x0011
Uint16 inputsource=DSK6713_AIC23_INPUT_MIC; //select input
interrupt void c_int11() //interrupt service routine
{
short sample_data;
sample_data = input_left_sample(); //input data (***)
output_left_sample(sample_data); //output data (***)
return;
}
void main()
{
comm_intr(); //init DSK, codec, McBSP (***)
while(1); //infinite loop
}
And warnings appears in (***) lines.


The problem with comm_intr() is that when I use Vectos_intr.asm file it bring me another warning and I do not know why as well. But main problem is 225-D error in lines 19 and 20 since it does not allowed me to process the signal from input to the output.

