tx_timer_activate in expiration function

I can’t reactivate an application timer in its own expiration function. Is this my fault? Regards, Stefan

I can not at all re-activate a timer. I proceed as follows: 1) Create a one-shot timer 2) Activate the timer 3) After the timer has expired: Activate the timer again - Stefan

After the one-shot timer has expired the internal counter is not reset! So you have to reset it with the function tx_timer_change. 1) to initialize one-shot timer: tx_timer_create tx_timer_activate 2) after timer has expired, to restart timer: tx_timer_change tx_timer_activate