Can I implement software delays using Timers in msp430?
I mean, for example
//some code
//some code
delay(10);
//some code
delay(20);
The delay function will delay the execution by the milliseconds specified as the arguments
But it should not use the loos, only timers.
Is it possible to have such a delay mechanism??