Hi I'm just getting up and running with SYSBIOS and going through the training videos. I am using the ICEV2 eval kit so my examples are slightly different than what are in the training.
I created a led toggle program using the I2C example as a starting point in the sysbios folder for this board. I've modified the code to use the clock manager to create an interrupt every 1mS and toggle the LED every 200mS. In the app.cfg window for the clock, if I choose "ANY" or "0" for my Timer ID my program works fine.
If I choose Timer ID 7,or 6 I get build errors stating the chosen clock is invalid (why give me the choice then?).
If I chose "1"-"5", the project builds without errors, but the program crashes with various runtime issues after loading on the target as shown in the debug and console windows:
ti.sysbios.family.arm.exc.Exception: line 189: E_dataAbort: pc = 0x8000b2a4, lr = 0x8000b278.
xdc.runtime.Error.raise: terminating execution
My questions are:
1) Why can't I use all the clocks that are offered in the app.cfg window other than ANY or 0?
2) Why can't I build with 6 or 7 since they're offered as timer ID's?
