mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/TACOS.git
synced 2025-08-06 17:47:34 +00:00
Added dummy task. Still a lot of compiler errors to be fixed
This commit is contained in:
25
App/Inc/tasks/dummy.hpp
Normal file
25
App/Inc/tasks/dummy.hpp
Normal file
@@ -0,0 +1,25 @@
|
||||
/*
|
||||
* dummy.hpp
|
||||
*
|
||||
* Created on: 22 Sep 2023
|
||||
* Author: Dario
|
||||
*/
|
||||
|
||||
#ifndef INC_TASKS_DUMMY_HPP_
|
||||
#define INC_TASKS_DUMMY_HPP_
|
||||
|
||||
#include <sta/tacos/thread.hpp>
|
||||
|
||||
namespace demo
|
||||
{
|
||||
class DummyTask : public sta::tacos::TacosThread {
|
||||
public:
|
||||
DummyTask(const char* name);
|
||||
|
||||
void init() override;
|
||||
|
||||
void func() override;
|
||||
};
|
||||
} // namespace demo
|
||||
|
||||
#endif /* INC_TASKS_DUMMY_HPP_ */
|
Reference in New Issue
Block a user