How to get the timer's remaining duration

doini-2012 wrote on Friday, December 21, 2012:

Hello,

I use the software timers functions, but I did not find a function to show me how many ticks the timer has remained until reaches ‘0’.

I would really appreciate your help.

Thank you,
Doini

rtel wrote on Friday, December 21, 2012:

There is no way of doing that.

When a timer is set its expire time is calculated, and the timer callback called when the expire time is reached.  Nothing in the timer changes between its expire time being set and it expiring - nothing counts down to zero or anything like that (that would be extremely inefficient).  Therefore, to do what you want, you would have to add a function that gets the expire time, and then compare it to the current time - which is easy enough - but then also account for timer overflows - which is no so easy.

Regards.

doini-2012 wrote on Friday, December 21, 2012:

Thank you, I appreciate your answer, now it is clear for me.
Doini