-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Info on hardware timers used for FreeRTOS on ESP32 #7223
-
I am starting a project using a ESP-Wroom32 development board and FreeRTOS. I need to change the period of the timer that schedules FreeRTOS tasks, etc.). How do I do this? Also, how do I find out which of the ESP32 hardware timers is used for this purpose?
Thanks!
François
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 2 comments
-
Arduino-esp32 > esp32 > FreeRTOS. At the Arduino level FreeRTOS should not be modified. What are you trying to accomplish?
At the Arduino level you have Ticker:
https://github.com/espressif/arduino-esp32/tree/master/libraries/Ticker/src
At ESP32 level you can access hardware timers.
https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/esp_timer.html
Beta Was this translation helpful? Give feedback.
All reactions
-
Beta Was this translation helpful? Give feedback.