added missing include, CSB uses static fifo now

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

View File

@ -3,6 +3,7 @@
#include <framework/returnvalues/HasReturnvaluesIF.h>
#include <framework/container/FIFOBase.h>
#include <array>
/**
* @brief Simple First-In-First-Out data structure with size fixed at

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;