Sample code for software based timer into ESP32-idf
Sample code for software based timer into ESP32-idf
Hi,
As I have looked that there are total 2 hardware timers are used and also got samples of hardware timers as well.
But, I want to implement some code based on software timer to trigger that code into some particular time duration. I have tried to look samples for software based timers into ESP32-IDF SDK but not found ..
Does anyone has implemented that type of sample code?
Please let me know if anyone has sample code for that.
As I have looked that there are total 2 hardware timers are used and also got samples of hardware timers as well.
But, I want to implement some code based on software timer to trigger that code into some particular time duration. I have tried to look samples for software based timers into ESP32-IDF SDK but not found ..
Does anyone has implemented that type of sample code?
Please let me know if anyone has sample code for that.
Regards,
Ritesh Prajapati
Ritesh Prajapati
Re: Sample code for software based timer into ESP32-idf
Not 100% sure what you mean by a software timer?
It is not uncommon to keep a list of "functions to be called when a timer interval has been reached". This becomes a matter of programming where one keeps a list of records where each record contains the time to fire and the function to call. These are ideally sorted in chronological order with the "next" record to fire being first in the list.
You then have some form of "master loop" which compare the time now against the first item in the list. If now >= fire time, you invoke the function and remove the record from the list. Optimizations of this that do not involve this kind of polling include using a hardware interrupt timer to automatically fire at the time of the first item in the list, when it does, you execute the function and re-initialize the hardware timer for the next item in the list. Challenges come in if the list is dynamic in nature in which case when a new timer is added that is sooner than the first timer in the list you need to cancel the timer and restart it based on the now new earliest time.
Is this close to what you were asking for?
It is not uncommon to keep a list of "functions to be called when a timer interval has been reached". This becomes a matter of programming where one keeps a list of records where each record contains the time to fire and the function to call. These are ideally sorted in chronological order with the "next" record to fire being first in the list.
You then have some form of "master loop" which compare the time now against the first item in the list. If now >= fire time, you invoke the function and remove the record from the list. Optimizations of this that do not involve this kind of polling include using a hardware interrupt timer to automatically fire at the time of the first item in the list, when it does, you execute the function and re-initialize the hardware timer for the next item in the list. Challenges come in if the list is dynamic in nature in which case when a new timer is added that is sooner than the first timer in the list you need to cancel the timer and restart it based on the now new earliest time.
Is this close to what you were asking for?
Free book on ESP32 available here: https://leanpub.com/kolban-ESP32
Re: Sample code for software based timer into ESP32-idf
Hi,
Yes. We have one requirement in which we need to perform some tasks like LED should be blink in High frequency with predefined interval when device is working in such situations to detect device operating condition based on LED behavior.
That is why I am looking as we have used software timer in ESP8266 project.
Does hardware timer fulfill my requirements or not?
Let me know if you have sample code that.
Yes. We have one requirement in which we need to perform some tasks like LED should be blink in High frequency with predefined interval when device is working in such situations to detect device operating condition based on LED behavior.
That is why I am looking as we have used software timer in ESP8266 project.
Does hardware timer fulfill my requirements or not?
Let me know if you have sample code that.
Regards,
Ritesh Prajapati
Ritesh Prajapati
Re: Sample code for software based timer into ESP32-idf
Hi,
Right now, we have requirement to create timer for some milliseconds interval to blink LEDs based on condition. We have tried to look for software based time like ESP8266 but couldn't found any software based timer into ESP32.
So, we have tried for hardware based time but there is limitations like not able to execute timer for milliseconds interval as it is working for second based timers.
Please let me know if anyone has implemented milliseconds based timer into ESP32.
Right now, we have requirement to create timer for some milliseconds interval to blink LEDs based on condition. We have tried to look for software based time like ESP8266 but couldn't found any software based timer into ESP32.
So, we have tried for hardware based time but there is limitations like not able to execute timer for milliseconds interval as it is working for second based timers.
Please let me know if anyone has implemented milliseconds based timer into ESP32.
Regards,
Ritesh Prajapati
Ritesh Prajapati
Re: Sample code for software based timer into ESP32-idf
You can use FreeRTOS timers, look at esp-idf/components/freertos/include/freertos/timers.h
and http://www.freertos.org/FreeRTOS-Softwa ... tions.html
It is quite simple to use it and it works well. Keep in mind that the timer interval is in FreeRTOS ticks.
and http://www.freertos.org/FreeRTOS-Softwa ... tions.html
It is quite simple to use it and it works well. Keep in mind that the timer interval is in FreeRTOS ticks.
Code: Select all
#include "freertos/timers.h"
TimerHandle_t tmr;
int id=1;
int interval = 100;
tmr = xTimerCreate("MyTimer", interval, pdTRUE, ( void * )id, vTimerCallback);
if( xTimerStart( timers[id].tmr, 10 ) != pdPASS ) {
printf("Timer start error");
}
...
Re: Sample code for software based timer into ESP32-idf
Thanks for reply. We have tested above free RTOS timer but we have faced issue like system restarted randomly after that.loboris wrote:You can use FreeRTOS timers, look at esp-idf/components/freertos/include/freertos/timers.h
and http://www.freertos.org/FreeRTOS-Softwa ... tions.html
It is quite simple to use it and it works well. Keep in mind that the timer interval is in FreeRTOS ticks.
Code: Select all
#include "freertos/timers.h" TimerHandle_t tmr; int id=1; int interval = 100; tmr = xTimerCreate("MyTimer", interval, pdTRUE, ( void * )id, vTimerCallback); if( xTimerStart( timers[id].tmr, 10 ) != pdPASS ) { printf("Timer start error"); } ...
Still, i will check it again and will let you know its working or not
Regards,
Ritesh Prajapati
Ritesh Prajapati
Re: Sample code for software based timer into ESP32-idf
Ritesh, would you please share your information about restarts after using timer ?
It could be helpful for others, and mostly they can help.
BTW, did you change stacksize to 2048 ?
For more information see http://www.esp32.com/viewtopic.php?f=14&t=743#p3136
There is also a recipe to get some more information around a crash http://www.esp32.com/viewtopic.php?t=263#p1131
It could be helpful for others, and mostly they can help.
BTW, did you change stacksize to 2048 ?
For more information see http://www.esp32.com/viewtopic.php?f=14&t=743#p3136
There is also a recipe to get some more information around a crash http://www.esp32.com/viewtopic.php?t=263#p1131
Re: Sample code for software based timer into ESP32-idf
Ritesh,
Depending on your appetite for sophistication, another possibility is the "RMT" component (Remote Control). Although apparently designed for driving infra-red remote control transmitters and receivers, this component is extremely powerful. Specifically, one can set up timers that drive GPIO pins and say how long you would like them high and how long you would like them low. You can have up to 8 distinct parallel channels (i.e. 8 pins of output). You can also say that you want the pattern to repeat once sent. For example, you could define a channel that is 1 of 500 msecs and 0 for 500 msecs and then repeats. What you effectively have is a 1 second period square wave signal on a pin. Your durations can be arbitrary ...and your sequence of timings arbitrarily complex. You can start and stop these signals being generated at will and since the code for running them appears to be embedded in the silicon of the ESP32, you appear to get them at no application cost other than setup.
They aren't yet for the feint of heart and if you decide to use, you will be investing a few hours in their study and experimentation with them ... but they are definitely an option. For example, I am using this function to show the status of my ESP32 using a "neopixel" (WS2812) which is a 24bit color LED. So instead of multiple LEDs on my board, I have one LED that has a color indicating the board status.
Depending on your appetite for sophistication, another possibility is the "RMT" component (Remote Control). Although apparently designed for driving infra-red remote control transmitters and receivers, this component is extremely powerful. Specifically, one can set up timers that drive GPIO pins and say how long you would like them high and how long you would like them low. You can have up to 8 distinct parallel channels (i.e. 8 pins of output). You can also say that you want the pattern to repeat once sent. For example, you could define a channel that is 1 of 500 msecs and 0 for 500 msecs and then repeats. What you effectively have is a 1 second period square wave signal on a pin. Your durations can be arbitrary ...and your sequence of timings arbitrarily complex. You can start and stop these signals being generated at will and since the code for running them appears to be embedded in the silicon of the ESP32, you appear to get them at no application cost other than setup.
They aren't yet for the feint of heart and if you decide to use, you will be investing a few hours in their study and experimentation with them ... but they are definitely an option. For example, I am using this function to show the status of my ESP32 using a "neopixel" (WS2812) which is a 24bit color LED. So instead of multiple LEDs on my board, I have one LED that has a color indicating the board status.
Free book on ESP32 available here: https://leanpub.com/kolban-ESP32
-
- Posts: 10
- Joined: Mon Mar 06, 2017 5:34 pm
Re: Sample code for software based timer into ESP32-idf
Actually I'm facing the same problems with FreeRTOS timers: once timer is triggered, callback function is called correctly, but even though I defined an empty function, system restarts due to an access violation:
Honesty ... I'm using FreeRTOS since many years ago, and my impression is that there's something related to FreeRTOS implementation on latest ESP-IDF.
Is anybody using FreeRTOS timers?
Code: Select all
Guru Meditation Error of type LoadProhibited occurred on core 0. Exception was unhandled.
Register dump:
PC : 0x400856cb PS : 0x00060433 A0 : 0x800841c5 A1 : 0x3ffd2740
A2 : 0x0000001d A3 : 0x3ffd27d0 A4 : 0x00000010 A5 : 0x3ffcec1c
A6 : 0x3ffd202c A7 : 0x401196e8 A8 : 0x80083386 A9 : 0x3ffd2730
A10 : 0x00000003 A11 : 0x00060423 A12 : 0x00060423 A13 : 0x3ffc0b90
A14 : 0x00000001 A15 : 0x3ffc0bd0 SAR : 0x00000018 EXCCAUSE: 0x0000001c
EXCVADDR: 0x0000002d LBEG : 0x4000c2e0 LEND : 0x4000c2f6 LCOUNT : 0x00000000
Backtrace: 0x400856cb:0x3ffd2740 0x400841c5:0x3ffd2760 0x4008379b:0x3ffd2780 0x4008501c:0x3ffd27c0 0x4011abac:0x3ffd27f0 0x40119851:0x3ffd2810 0x40119a34:0x3ffd2830 0x40133afa:0x3ffd2850 0x401198d9:0x3ffd2870
Is anybody using FreeRTOS timers?
Hardwire.io / The IoT Platform
Re: Sample code for software based timer into ESP32-idf
Hi HardwareIO,HardwireIO wrote:Actually I'm facing the same problems with FreeRTOS timers
I'm able to reproduce this. Will let you know once a fix is available.
Angus
Who is online
Users browsing this forum: No registered users and 61 guests