Search found 1 match

by Vivek@IoT
Tue Mar 07, 2023 6:10 am
Forum: General Discussion
Topic: How to clear esp_timer memory?
Replies: 1
Views: 739

How to clear esp_timer memory?

esp_timer_create(&retry_count_timer_args, &retry_count_timer); esp_timer_start_once(retry_count_timer, retry_count_time_us); I created a timer using the above two functions and then after the timer expires I want to free the memory of the timer. I used the following function but it is causing the p...