Robin Mueller
c99cb4a81e
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
25 lines
648 B
C++
25 lines
648 B
C++
#pragma once
|
|
|
|
#include <fsfw/returnvalues/HasReturnvaluesIF.h>
|
|
#include <fsfw_hal/linux/gpio/LinuxLibgpioIF.h>
|
|
|
|
#include <string>
|
|
|
|
class GpioIF;
|
|
class SpiComIF;
|
|
class PowerSwitchIF;
|
|
|
|
namespace ObjectFactory {
|
|
|
|
void createSunSensorComponents(GpioIF* gpioComIF, SpiComIF* spiComIF, PowerSwitchIF* pwrSwitcher,
|
|
std::string spiDev);
|
|
void createRtdComponents(std::string spiDev, GpioIF* gpioComIF, PowerSwitchIF* pwrSwitcher,
|
|
SpiComIF* comIF);
|
|
|
|
void gpioChecker(ReturnValue_t result, std::string output);
|
|
|
|
void createThermalController();
|
|
void createAcsController();
|
|
|
|
} // namespace ObjectFactory
|