Cleanroom Laptop L15
0e6d2354fc
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
23 lines
572 B
C++
23 lines
572 B
C++
#pragma once
|
|
|
|
#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 gpioChecker(ReturnValue_t result, std::string output);
|
|
|
|
void createThermalController();
|
|
|
|
} // namespace ObjectFactory
|