renamed freertos includes

This commit is contained in:
Jakob.Meier 2021-07-06 18:17:24 +02:00
parent b00bfe4bda
commit 5e960f118f
16 changed files with 28 additions and 28 deletions

View File

@ -4,7 +4,7 @@
#include <fsfw/devicehandlers/DeviceHandlerBase.h>
#include <fsfw/events/EventManager.h>
#include <fsfw/health/HealthTable.h>
#include <fsfw/tmtcpacket/pus/TmPacketStored.h>
#include <fsfw/tmtcpacket/pus/tm/TmPacketStored.h>
#include <fsfw/tmtcservices/CommandingServiceBase.h>
#include <fsfw/tmtcservices/PusServiceBase.h>
#include <fsfw/internalError/InternalErrorReporter.h>

View File

@ -4,8 +4,8 @@
#include "../../returnvalues/HasReturnvaluesIF.h"
#include "../../tasks/SemaphoreIF.h"
#include <freertos/FreeRTOS.h>
#include <freertos/task.h>
#include "FreeRTOS.h"
#include "task.h"
#if (tskKERNEL_VERSION_MAJOR == 8 && tskKERNEL_VERSION_MINOR > 2) || \
tskKERNEL_VERSION_MAJOR > 8

View File

@ -4,8 +4,8 @@
#include "../../returnvalues/HasReturnvaluesIF.h"
#include "../../tasks/SemaphoreIF.h"
#include <freertos/FreeRTOS.h>
#include <freertos/semphr.h>
#include "FreeRTOS.h"
#include "semphr.h"
/**
* @brief OS Tool to achieve synchronization of between tasks or between

View File

@ -3,8 +3,8 @@
#include "../../timemanager/Clock.h"
#include "../../globalfunctions/timevalOperations.h"
#include <freertos/FreeRTOS.h>
#include <freertos/task.h>
#include "FreeRTOS.h"
#include "task.h"
#include <stdlib.h>
#include <time.h>

View File

@ -4,8 +4,8 @@
#include "CountingSemaphUsingTask.h"
#include "../../tasks/SemaphoreIF.h"
#include <freertos/FreeRTOS.h>
#include <freertos/task.h>
#include "FreeRTOS.h"
#include "task.h"
#if (tskKERNEL_VERSION_MAJOR == 8 && tskKERNEL_VERSION_MINOR > 2) || \
tskKERNEL_VERSION_MAJOR > 8

View File

@ -3,7 +3,7 @@
#include "../../serviceinterface/ServiceInterfaceStream.h"
#include <freertos/semphr.h>
#include "semphr.h"
// Make sure #define configUSE_COUNTING_SEMAPHORES 1 is set in
// free FreeRTOSConfig.h file.

View File

@ -6,8 +6,8 @@
#include "../../tasks/FixedTimeslotTaskIF.h"
#include "../../tasks/Typedef.h"
#include <freertos/FreeRTOS.h>
#include <freertos/task.h>
#include "FreeRTOS.h"
#include "task.h"
class FixedTimeslotTask: public FixedTimeslotTaskIF, public FreeRTOSTaskIF {
public:

View File

@ -1,8 +1,8 @@
#ifndef FSFW_OSAL_FREERTOS_FREERTOSTASKIF_H_
#define FSFW_OSAL_FREERTOS_FREERTOSTASKIF_H_
#include <freertos/FreeRTOS.h>
#include <freertos/task.h>
#include "FreeRTOS.h"
#include "task.h"
class FreeRTOSTaskIF {
public:

View File

@ -7,8 +7,8 @@
#include "../../ipc/MessageQueueIF.h"
#include "../../ipc/MessageQueueMessageIF.h"
#include <freertos/FreeRTOS.h>
#include <freertos/queue.h>
#include "FreeRTOS.h"
#include "queue.h"
#include <fsfw/ipc/MessageQueueMessage.h>
/**

View File

@ -3,8 +3,8 @@
#include "../../ipc/MutexIF.h"
#include <freertos/FreeRTOS.h>
#include <freertos/semphr.h>
#include "FreeRTOS.h"
#include "semphr.h"
/**
* @brief OS component to implement MUTual EXclusion

View File

@ -6,8 +6,8 @@
#include "../../tasks/PeriodicTaskIF.h"
#include "../../tasks/Typedef.h"
#include <freertos/FreeRTOS.h>
#include <freertos/task.h>
#include "FreeRTOS.h"
#include "task.h"
#include <vector>

View File

@ -5,8 +5,8 @@
#include "../../ipc/messageQueueDefinitions.h"
#include "../../ipc/MessageQueueIF.h"
#include "freertos/FreeRTOS.h"
#include "freertos/queue.h"
#include "FreeRTOS.h"
#include "queue.h"
#include <map>

View File

@ -3,8 +3,8 @@
#include "../../returnvalues/HasReturnvaluesIF.h"
#include <freertos/FreeRTOS.h>
#include <freertos/task.h>
#include "FreeRTOS.h"
#include "task.h"
#include <cstdint>

View File

@ -3,8 +3,8 @@
#include "../../timemanager/Clock.h"
#include <freertos/FreeRTOS.h>
#include <freertos/task.h>
#include "FreeRTOS.h"
#include "task.h"
/**

View File

@ -3,7 +3,7 @@
#include <fsfw/ipc/MessageQueueIF.h>
#include <fsfw/ipc/MessageQueueMessage.h>
#include <unittest/core/CatchDefinitions.h>
#include <unittest/user/unittest/core/CatchDefinitions.h>
#include <cstring>
#include <queue>

View File

@ -7,7 +7,7 @@
#include <fsfw/internalError/InternalErrorReporter.h>
#include <fsfw/objectmanager/frameworkObjects.h>
#include <fsfw/storagemanager/PoolManager.h>
#include <fsfw/tmtcpacket/pus/TmPacketStored.h>
#include <fsfw/tmtcpacket/pus/tm/TmPacketStored.h>
#include <fsfw/tmtcservices/CommandingServiceBase.h>
#include <fsfw/tmtcservices/PusServiceBase.h>
#include <fsfw/unittest/tests/datapoollocal/LocalPoolOwnerBase.h>