mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/CAN-Demo.git
synced 2025-06-09 18:55:58 +00:00
33 lines
460 B
C++
33 lines
460 B
C++
/*
|
|
* 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_ */
|