Dear BIOS Champs,
We're using CCSv5, DSP/BIOS 5.4, and a C5515 EVM. We've inserted an IDL function using the configuration tool. What we're seeing is theidle function is being called before we exit main and hence before BIOS_start() is called. Our understanding is the BIOS scheduler doesn't run until BIOS_start is called which means we should never get into the idle thread until BIOS_start. So my question is, is there a situation where the idle thread can run before we exit main?
I will say that we do enable some peripherals and associated interrupts in main so I'm thinking we may be taking an interrupt (using HWI dispatcher) before we exit main. Could this be the cause? Are we taking the HWI interrupt and when that completes, BIOS drops into the idle loop? The interesteing thing is we do seem to complete main so I can't explain how we get from idle back into main if that is indeed what's happening.
Thanks