something 'It worked on my machine' something

This commit is contained in:
dario
2024-12-07 19:28:34 +01:00
parent 3cb196d6e7
commit 7895b551fd
457 changed files with 71354 additions and 83 deletions

View File

@@ -0,0 +1,20 @@
#ifndef INC_TASKS_SPAM_TASK_HPP_
#define INC_TASKS_SPAM_TASK_HPP_
#include <sta/tacos.hpp>
namespace tasks
{
class SpamTask : public sta::tacos::TacosThread {
public:
SpamTask();
// One time function that is called when the thread is created.
void init() override;
// Repeatable function that is called every time the thread is executed.
void func() override;
};
} // namespace tasks
#endif /* INC_TASKS_SPAM_TASK_HPP_ */