mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/TACOS.git
synced 2025-12-16 14:28:04 +00:00
Working manager & statemachine tasks; timers still bugged; statemachine init bugged
This commit is contained in:
@@ -19,11 +19,14 @@ namespace sta
|
||||
{
|
||||
TacosThread::TacosThread(const char* name, osPriority_t prio)
|
||||
: RtosThread(RtosHandle<osThreadId_t>(Handle::Deferred(&instance_))),
|
||||
instance_{ NULL },
|
||||
attribs_{ .name = name, .priority = prio }
|
||||
{}
|
||||
|
||||
TacosThread::TacosThread()
|
||||
: RtosThread(RtosHandle<osThreadId_t>(Handle::Deferred(&instance_)))
|
||||
: RtosThread(RtosHandle<osThreadId_t>(Handle::Deferred(&instance_))),
|
||||
instance_{ NULL },
|
||||
attribs_{ }
|
||||
{}
|
||||
|
||||
void TacosThread::entry_point(void* arg)
|
||||
@@ -85,6 +88,7 @@ namespace sta
|
||||
}
|
||||
|
||||
void TacosThread::init(){}
|
||||
|
||||
void TacosThread::func(){}
|
||||
|
||||
TacosThread::~TacosThread(){}
|
||||
|
||||
Reference in New Issue
Block a user