1
0
forked from fsfw/fsfw

added missing include, CSB uses static fifo now

This commit is contained in:
2020-07-06 13:29:56 +02:00
parent ec212d9fcf
commit 991385de65
2 changed files with 3 additions and 2 deletions

View File

@ -2,7 +2,7 @@
#define COMMANDINGSERVICEBASE_H_
#include <framework/container/FixedMap.h>
#include <framework/container/FIFO.h>
#include <framework/container/StaticFIFO.h>
#include <framework/ipc/CommandMessage.h>
#include <framework/objectmanager/ObjectManagerIF.h>
#include <framework/objectmanager/SystemObject.h>
@ -179,7 +179,7 @@ protected:
uint32_t state;
Command_t command;
object_id_t objectId;
FIFO<store_address_t, 3> fifo;
StaticFIFO<store_address_t, 3> fifo;
};
const uint16_t apid;