-
Notifications
You must be signed in to change notification settings - Fork 41
Open
Description
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
Metadata
Metadata
Assignees
Labels
No labels