Robin Mueller
d6fd28e124
All checks were successful
EIVE/eive-obsw/pipeline/pr-main This commit looks good
12 lines
305 B
C++
12 lines
305 B
C++
#ifndef EIVE_OBSW_SCHEDULING_H
|
|
#define EIVE_OBSW_SCHEDULING_H
|
|
|
|
class PeriodicTaskIF;
|
|
|
|
namespace scheduling {
|
|
void scheduleTmpTempSensors(PeriodicTaskIF* tmpSensors, bool schedulePlPcdu1);
|
|
void scheduleRtdSensors(PeriodicTaskIF* periodicTask);
|
|
|
|
} // namespace scheduling
|
|
#endif // EIVE_OBSW_SCHEDULING_H
|