mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/cmake-demo.git
synced 2025-06-10 02:25:59 +00:00
27 lines
372 B
C++
27 lines
372 B
C++
/*
|
|
* arming.hpp
|
|
*
|
|
* Created on: Jun 17, 2024
|
|
* Author: carlos
|
|
*/
|
|
|
|
#ifndef INC_TASKS_ARMING_HPP_
|
|
#define INC_TASKS_ARMING_HPP_
|
|
|
|
#include <sta/tacos.hpp>
|
|
|
|
namespace tasks
|
|
{
|
|
class ArmingTask : public sta::tacos::TacosThread
|
|
{
|
|
public:
|
|
ArmingTask();
|
|
|
|
void init() override;
|
|
|
|
void func() override;
|
|
};
|
|
} // namespace tasks
|
|
|
|
#endif /* INC_TASKS_ARMING_HPP_ */
|