eive-obsw/bsp_te0720_1cfa/ObjectFactory.h
meierj a2e7c6cca6
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
moved ccsds object creation back to core object factory and run auto formatter
2022-06-27 10:58:46 +02:00

13 lines
328 B
C++

#ifndef BSP_LINUX_OBJECTFACTORY_H_
#define BSP_LINUX_OBJECTFACTORY_H_
#include <stdint.h>
#include <fsfw_hal/linux/gpio/LinuxLibgpioIF.h>
namespace ObjectFactory {
static const uint32_t TRANSMITTER_TIMEOUT = 86400000; // 1 day
void produce(void* args);
}; // namespace ObjectFactory
#endif /* BSP_LINUX_OBJECTFACTORY_H_ */