12 lines
283 B
C++
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
|