I’m missing some documentation on Timer // Pebble Developers . Is the AppTimer* returned by app_timer_register freed / invalid after the timer expires / fires or am I supposed to cancel it afterwards? If not invalidated after expiring, can I re-schedule it with app_timer_reschedule after it fired / within the callback?
1 Like
You don’t need to free the timer. You should schedule a new one in the timer callback, don’t use reschedule on an elapsed timer.
1 Like