From bc4880c71447c3488cb47ca0a5af9d4b653e9520 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 17 Apr 2024 11:09:08 +0200 Subject: [PATCH] smaller fixes --- linux/payload/MpsocCommunication.h | 2 +- linux/payload/PlocMpsocSpecialComHelper.cpp | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/linux/payload/MpsocCommunication.h b/linux/payload/MpsocCommunication.h index e1c6d7a5..84e45d35 100644 --- a/linux/payload/MpsocCommunication.h +++ b/linux/payload/MpsocCommunication.h @@ -9,7 +9,7 @@ #include "fsfw/tmtcpacket/ccsds/SpacePacketReader.h" #include "linux/payload/SerialCommunicationHelper.h" -static constexpr bool MPSOC_LOW_LEVEL_RX_WIRETAPPING = false; +static constexpr bool MPSOC_LOW_LEVEL_RX_WIRETAPPING = true; class MpsocCommunication : public SystemObject { public: diff --git a/linux/payload/PlocMpsocSpecialComHelper.cpp b/linux/payload/PlocMpsocSpecialComHelper.cpp index d82ab4c5..aa97ee68 100644 --- a/linux/payload/PlocMpsocSpecialComHelper.cpp +++ b/linux/payload/PlocMpsocSpecialComHelper.cpp @@ -26,7 +26,8 @@ PlocMpsocSpecialComHelper::PlocMpsocSpecialComHelper(object_id_t objectId, PlocMpsocSpecialComHelper::~PlocMpsocSpecialComHelper() {} ReturnValue_t PlocMpsocSpecialComHelper::initialize() { -#ifdef XIPHOS_Q7S sdcMan = SdCardManager::instance(); +#ifdef XIPHOS_Q7S + sdcMan = SdCardManager::instance(); if (sdcMan == nullptr) { sif::warning << "PlocMPSoCHelper::initialize: Invalid SD Card Manager" << std::endl; return returnvalue::FAILED;