Tool/software: Code Composer Studio
Hello,
I have a problem with breakpoints in debug session using CCS version 5.1 and DSP processor TMS320C6748 (OMAP L-138 EVM). The program stops on the breakpoint only once (even if it is set in a while loop). I am not getting any error messages from program compilation/ dsp initialization (I am using built-in emulator TI XDS 100v1 USB). Please see the example code (the audio samples are transmitted and received correctly):
L138_initialise_poll(FS_48000_HZ,ADC_GAIN_0DB,DAC_ATTEN_0DB);
while(1)
{
sample = input_sample(); // <- breakpoint
output_sample(sample);
}
Could you please point me, what could be the reason of that?