max number of stored packets lowered

This commit is contained in:
Robin Müller 2020-04-17 23:18:16 +02:00
parent b422ff601a
commit 4a218470cf
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ protected:
private:
static const uint8_t TMTC_RECEPTION_QUEUE_DEPTH = 20;
static const uint8_t MAX_STORED_DATA_SENT_PER_CYCLE = 10;
static const uint8_t MAX_DOWNLINK_PACKETS_STORED = 20;
static const uint8_t MAX_DOWNLINK_PACKETS_STORED = 15;
FIFO<store_address_t, MAX_DOWNLINK_PACKETS_STORED> fifo;
uint8_t * recvBuffer;