it was not the #pragma once
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit Details

This commit is contained in:
Robin Müller 2022-11-15 17:22:28 +01:00
parent e5ec8a7490
commit 7fb689b451
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
2 changed files with 2 additions and 8 deletions

View File

@ -1,9 +1,6 @@
#ifndef _BSP_HOSTED_SCHEDULING_H_
#define _BSP_HOSTED_SCHEDULING_H_
#pragma once
namespace scheduling {
void initMission();
void initTasks();
}; // namespace scheduling
#endif

View File

@ -1,5 +1,4 @@
#ifndef _LINUX_SCHEDULING_H
#define _LINUX_SCHEDULING_H
#pragma once
#include <fsfw/tasks/TaskFactory.h>
@ -8,5 +7,3 @@ void schedulingScex(TaskFactory& factory, PeriodicTaskIF*& scexDevHandler,
PeriodicTaskIF*& scexReaderTask);
void addMpsocSupvHandlers(PeriodicTaskIF* task);
} // namespace scheduling
#endif