mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/TACOS.git
synced 2025-08-06 17:47:34 +00:00
Added first successful test for statemachine rework
This commit is contained in:
26
App/Inc/tasks/toggle.hpp
Normal file
26
App/Inc/tasks/toggle.hpp
Normal file
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
* toggle.hpp
|
||||
*
|
||||
* Created on: Nov 10, 2023
|
||||
* Author: Dario
|
||||
*/
|
||||
|
||||
#ifndef INC_STA_TOGGLE_HPP_
|
||||
#define INC_STA_TOGGLE_HPP_
|
||||
|
||||
#include <sta/tacos/thread.hpp>
|
||||
|
||||
namespace demo
|
||||
{
|
||||
class Toggle : public sta::tacos::TacosThread
|
||||
{
|
||||
public:
|
||||
Toggle();
|
||||
|
||||
void init() override;
|
||||
|
||||
void func() override;
|
||||
};
|
||||
}
|
||||
|
||||
#endif /* INC_STA_TOGGLE_HPP_ */
|
Reference in New Issue
Block a user