From 9af43cb93b28f9b4046363c510d39ece402f2b75 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 14 Mar 2023 14:05:41 +0100 Subject: [PATCH 1/2] store more TCP/IP packets --- common/config/eive/definitions.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/config/eive/definitions.h b/common/config/eive/definitions.h index d6a1e757..74208e25 100644 --- a/common/config/eive/definitions.h +++ b/common/config/eive/definitions.h @@ -56,8 +56,8 @@ static constexpr uint32_t CFDP_STORE_QUEUE_SIZE = 300; static constexpr uint32_t MAX_PUS_FUNNEL_QUEUE_DEPTH = 100; static constexpr uint32_t MAX_CFDP_FUNNEL_QUEUE_DEPTH = 80; -static constexpr uint32_t MAX_STORED_CMDS_UDP = 120; -static constexpr uint32_t MAX_STORED_CMDS_TCP = 150; +static constexpr uint32_t MAX_STORED_CMDS_UDP = 150; +static constexpr uint32_t MAX_STORED_CMDS_TCP = 180; namespace spiSched { From fe9c8c50f28c8090e8188f5699387bf522a8769b Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 14 Mar 2023 14:06:33 +0100 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 528e0f9f..27b2f6f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ will consitute of a breaking change warranting a new major release: - The Syrlinks task now has a proper name instead of `MAIN_SPI`. - Make whole EIVE system initial transition work for the EM. This was also made possible by always scheduling most EIVE components instead of tying the scheduling to preprocessor defines. +- Store more TCP und UDP packets. ## Changed