I wanted to create a time base to perform functions regularly, I thought about using the following code:
xTimerHandle timer;
void callback_timer (xTimerHandle xTimer)
{
}
timer = xTimerCreate ("timer", 5000 / portTICK_RATE_MS, pdTRUE, (void *) 0, & callback_timer);
The problem when I fill it is the following
Statistics: Posted by texas_72 — Wed Dec 13, 2017 4:39 pm
]]>