2023-03-26 16:42:00 +02:00

12 lines
283 B
C++

#ifndef EIVE_OBSW_SCHEDULING_H
#define EIVE_OBSW_SCHEDULING_H
class PeriodicTaskIF;
namespace scheduling {
void scheduleTmpTempSensors(PeriodicTaskIF* tmpSensors);
void scheduleRtdSensors(PeriodicTaskIF* periodicTask);
} // namespace scheduling
#endif // EIVE_OBSW_SCHEDULING_H