1
0
forked from fsfw/fsfw

dynamic fifo bug fixed

This commit is contained in:
2020-07-11 02:36:04 +02:00
parent 6a6395313f
commit 35d4267b40
5 changed files with 44 additions and 28 deletions

View File

@ -63,11 +63,12 @@ public:
* @return
*/
indexSizePair getNextFifoPair();
private:
//! A FIFO is used to store information about multiple PUS packets
//! inside the receive buffer. The maximum number of entries is defined
//! by the first constructor argument.
private:
/** A FIFO is used to store information about multiple PUS packets
* inside the receive buffer. The maximum number of entries is defined
* by the first constructor argument.
*/
DynamicFIFO<indexSizePair> indexSizePairFIFO;
bool storeSplitPackets = false;