#pragma once #include #include #include #include #include #include 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, SdCardMountedIF& mountedIF, bool onImmediately, std::optional switchId); void gpioChecker(ReturnValue_t result, std::string output); void createThermalController(); void createAcsController(); } // namespace ObjectFactory