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