store still not large enough?

This commit is contained in:
Robin Müller 2023-10-18 16:07:00 +02:00
parent 07ddaa2692
commit d1ee938ade
Signed by: muellerr
GPG Key ID: A649FB78196E3849
3 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@ static constexpr uint32_t LEGACY_SA_DEPL_CHANNEL_ALTERNATION_INTERVAL_SECS = 5;
// Maximum allowed burn time allowed by the software.
static constexpr uint32_t SA_DEPL_MAX_BURN_TIME = 180;
static constexpr size_t CFDP_MAX_FILE_SEGMENT_LEN = 900;
static constexpr size_t CFDP_MAX_FILE_SEGMENT_LEN = 500;
static constexpr uint32_t CCSDS_HANDLER_QUEUE_SIZE = 50;
static constexpr uint8_t NUMBER_OF_VIRTUAL_CHANNELS = 4;

View File

@ -15,7 +15,7 @@
#include "eive/definitions.h"
static constexpr bool DEBUG_CFDP_TO_LIVE_TM_TASK = false;
static constexpr bool DEBUG_CFDP_TO_LIVE_TM_TASK = true;
class LiveTmTask : public SystemObject,
public HasModesIF,

View File

@ -118,7 +118,7 @@ void ObjectFactory::produceGenericObjects(HealthTableIF** healthTable_, PusTmFun
{
PoolManager::LocalPoolConfig poolCfg = {{600, 32}, {400, 64}, {400, 128},
{350, 512}, {500, 1200}, {100, 2048}};
{350, 512}, {600, 1200}, {100, 2048}};
*tmStore = new PoolManager(objects::TM_STORE, poolCfg);
}