Added first implementation

This commit is contained in:
dario
2024-01-07 00:41:32 +01:00
parent b41426feaf
commit 5681411c65
13 changed files with 418 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
/*
* Dummy.hpp
*
* Created on: Dec 31, 2023
* Author: Dario
*/
#ifndef INCLUDE_TASKS_DUMMY_HPP_
#define INCLUDE_TASKS_DUMMY_HPP_
#include <sta/tacos/thread.hpp>
namespace demo
{
class DummyThread : public sta::tacos::TacosThread
{
public:
DummyThread(const char* name);
void init() override;
void func() override;
};
}
#endif /* INCLUDE_TASKS_DUMMY_HPP_ */