csb fifo tweak

This commit is contained in:
Robin Müller 2020-07-07 17:54:09 +02:00
parent 5f76b03f3a
commit d795892d57

View File

@ -1,8 +1,8 @@
#ifndef COMMANDINGSERVICEBASE_H_ #ifndef FRAMEWORK_TMTCSERVICES_COMMANDINGSERVICEBASE_H_
#define COMMANDINGSERVICEBASE_H_ #define FRAMEWORK_TMTCSERVICES_COMMANDINGSERVICEBASE_H_
#include <framework/container/FixedMap.h> #include <framework/container/FixedMap.h>
#include <framework/container/StaticFIFO.h> #include <framework/container/FIFO.h>
#include <framework/ipc/CommandMessage.h> #include <framework/ipc/CommandMessage.h>
#include <framework/objectmanager/ObjectManagerIF.h> #include <framework/objectmanager/ObjectManagerIF.h>
#include <framework/objectmanager/SystemObject.h> #include <framework/objectmanager/SystemObject.h>
@ -179,7 +179,7 @@ protected:
uint32_t state; uint32_t state;
Command_t command; Command_t command;
object_id_t objectId; object_id_t objectId;
fsfw::StaticFIFO<store_address_t, 3> fifo; FIFO<store_address_t, 3> fifo;
}; };
const uint16_t apid; const uint16_t apid;
@ -286,4 +286,4 @@ private:
void checkTimeout(); void checkTimeout();
}; };
#endif /* COMMANDINGSERVICEBASE_H_ */ #endif /* FRAMEWORK_TMTCSERVICES_COMMANDINGSERVICEBASE_H_ */