This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Part Number: MSP432P401R
Tool/software: Code Composer Studio
Hello!
I have the following issue when switching from the black MSP432 board to the new red MSP432 and a new compiler in Code Composer Studio 8.
A hard delay function gets optimised away and the program gets stuck in function. The delay function uses a timer interrupt to count the delays and
with the debugger I can see that the interrupt is firing and the delay variable gets decremented.
Can anybody help with this?
Here is the code:
/* These definitions are also used */ #define Public #define Private static /******** Here is the delay variable **********/ #pragma RETAIN(priv_delay_counter) static volatile U16 priv_delay_counter = 0u; /*********************/ /* delay function */ #pragma FUNCTION_OPTIONS(delay_msec, "--opt_level=off") Public void delay_msec(U16 msec) { priv_delay_counter = msec / 10; while(priv_delay_counter > 0u); } /* Interrupt service routine. */ //Hi priority interrupt handler. Private void TA0_0_IRQHandler(void) { Timer_A_clearCaptureCompareInterrupt(TIMER_A0_BASE, TIMER_A_CAPTURECOMPARE_REGISTER_0); if (priv_delay_counter > 0u) { priv_delay_counter--; } timer_10msec_callback(); }
SleepOnIsrExit mode is a very specialized optimization, which your application has to be architected around (most aren't). If you're not certain that you Should use it, you Shouldn't.
In practice I never use this feature, so it's possible it didn't work in the X silicon (black Launchpad). I defer to others on that.
Personal opinion: I think it's unfortunate this function is peppered around the Examples suite. In each case I've seen, its use is not incorrect, but is unnecessary, and kinda teaches the wrong thing. But that's just me.
**Attention** This is a public forum