Robin Mueller
563e13765d
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
26 lines
710 B
C++
26 lines
710 B
C++
#pragma once
|
|
|
|
#include <fsfw/hal/src/fsfw_hal/linux/gpio/LinuxLibgpioIF.h>
|
|
#include <fsfw/returnvalues/HasReturnvaluesIF.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();
|
|
|
|
} // namespace ObjectFactory
|