Initial Commit

This commit is contained in:
CarlWachter
2025-03-25 15:20:28 +01:00
commit 81a16b2acc
50 changed files with 5351 additions and 0 deletions

26
App/Inc/tasks/arming.hpp Normal file
View File

@@ -0,0 +1,26 @@
/*
* 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_ */