readme fix
This commit is contained in:
parent
4d4300cee6
commit
e4d323683d
@ -1,11 +1,9 @@
|
|||||||
#include "Factory.h"
|
#include "Factory.h"
|
||||||
|
#include "../tmtc/apid.h"
|
||||||
/* Config */
|
#include "../tmtc/pusIds.h"
|
||||||
#include <tmtc/apid.h>
|
#include "../objects/systemObjectList.h"
|
||||||
#include <objects/systemObjectList.h>
|
#include "../devices/logicalAddresses.h"
|
||||||
#include <devices/logicalAddresses.h>
|
#include "../devices/powerSwitcherList.h"
|
||||||
#include <devices/powerSwitcherList.h>
|
|
||||||
#include <tmtc/pusIds.h>
|
|
||||||
|
|
||||||
#include <fsfw/devicehandlers/DeviceHandlerBase.h>
|
#include <fsfw/devicehandlers/DeviceHandlerBase.h>
|
||||||
#include <fsfw/events/EventManager.h>
|
#include <fsfw/events/EventManager.h>
|
||||||
@ -13,21 +11,20 @@
|
|||||||
#include <fsfw/tmtcpacket/pus/TmPacketStored.h>
|
#include <fsfw/tmtcpacket/pus/TmPacketStored.h>
|
||||||
#include <fsfw/tmtcservices/CommandingServiceBase.h>
|
#include <fsfw/tmtcservices/CommandingServiceBase.h>
|
||||||
#include <fsfw/tmtcservices/PusServiceBase.h>
|
#include <fsfw/tmtcservices/PusServiceBase.h>
|
||||||
#include <mission/utility/TmFunnel.h>
|
|
||||||
|
|
||||||
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Build tasks by using SystemObject Interface (Interface).
|
* This class should be used to create all system objects required for
|
||||||
* Header files of all tasks must be included
|
* the on-board software, using the object ID list from the configuration
|
||||||
* Please note that an object has to implement the system object interface
|
* folder.
|
||||||
* if the nterface validity is checked or retrieved later by using the
|
*
|
||||||
* get<TargetInterface>(object_id) function from the ObjectManagerIF.
|
* The objects are registered in the internal object manager automatically.
|
||||||
|
* This is used later to add objects to tasks.
|
||||||
|
*
|
||||||
|
* This file also sets static framework IDs.
|
||||||
*
|
*
|
||||||
* Framework objects are created first.
|
* Framework objects are created first.
|
||||||
*
|
|
||||||
* @ingroup init
|
* @ingroup init
|
||||||
*/
|
*/
|
||||||
void Factory::produce(void) {
|
void Factory::produce(void) {
|
||||||
@ -52,6 +49,6 @@ void Factory::setStaticFrameworkObjectIds() {
|
|||||||
DeviceHandlerFailureIsolation::powerConfirmationId = objects::NO_OBJECT;
|
DeviceHandlerFailureIsolation::powerConfirmationId = objects::NO_OBJECT;
|
||||||
|
|
||||||
TmPacketStored::timeStamperId = objects::PUS_TIME;
|
TmPacketStored::timeStamperId = objects::PUS_TIME;
|
||||||
TmFunnel::downlinkDestination = objects::NO_OBJECT;
|
//TmFunnel::downlinkDestination = objects::NO_OBJECT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user