Just straight up can card module SW

This commit is contained in:
CarlWachter
2024-02-23 16:51:20 +01:00
parent 8367127c62
commit a23e573e64
20 changed files with 7195 additions and 191 deletions

32
App/Inc/tasks/thermo.hpp Normal file
View File

@@ -0,0 +1,32 @@
/*
* can_task.hpp
*
* Created on: 10 Dec 2023
* Author: Carl
*/
#ifndef INC_TASKS_THERMO_HPP_
#define INC_TASKS_THERMO_HPP_
#include <sta/tacos/thread.hpp>
#include <sta/devices/stm32/can.hpp>
#include <gpio.h>
#include <spi.h>
namespace demo
{
class ThermoTask : public sta::tacos::TacosThread {
public:
ThermoTask();
void init() override;
void func() override;
private:
};
} // namespace demo
#endif /* INC_TASKS_THERMO_HPP_ */