Hi,
I saw an exception error during runtime initialization (before main function) with UIA example.
My environment looks like below:
- CCSv5.3
- UIA sample : Stairstep_JTAG_StopMode (comes from CCS)
- RTSC components:
But, as I mentioned first, I saw an exception error before main with the created executable.
I tried to make some RTSC modules off and finally I found that the following configurations seemed to cause the exception error.
=========
var timerParams = new Timer.Params();
timerParams.startMode = Timer.StartMode_AUTO;
timerParams.period = 100000; /* 100,000 uSecs = 100ms */
var timer0 = Timer.create(Timer.ANY, '&timerFunc', timerParams);
=========
This looks like setup for 100 msec periodic interrupt for application and when these lines are commented out, I did not saw exception and
UIA looks like working correctly.
Best Regards,
Kawada
