meierj
a2e7c6cca6
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
13 lines
328 B
C++
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_ */
|