Robin Mueller
aa0da618ca
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
27 lines
719 B
C++
27 lines
719 B
C++
#pragma once
|
|
|
|
#include <fsfw/returnvalues/returnvalue.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 createScexComponents(std::string uartDev, PowerSwitchIF* pwrSwitcher);
|
|
|
|
void gpioChecker(ReturnValue_t result, std::string output);
|
|
|
|
void createThermalController();
|
|
void createAcsController();
|
|
|
|
} // namespace ObjectFactory
|