Any chance for some examples on how to use the framework for us newbies?
header
class WriteTask: public TaskClassS<1000> {
public:
WriteTask(): TaskClassS("WriteTask", TaskPrio_Mid){
};
void task();
};
cpp
#include <WriteTask.h>
void WriteTask::task() {
while(1)
{
asm("NOP");
vTaskDelay(500);
}
}
my task function never gets executed, seems to delete the task before anything happens.
CHeers
Any chance for some examples on how to use the framework for us newbies?
header
cpp
my task function never gets executed, seems to delete the task before anything happens.
CHeers