From d5a07f9c63958d0c1035e43ff63e79ded3ac95e0 Mon Sep 17 00:00:00 2001 From: "Jakob.Meier" Date: Thu, 1 Jul 2021 15:57:10 +0200 Subject: [PATCH] added debug output --- linux/fsfwconfig/FSFWConfig.h.in | 2 +- mission/devices/RadiationSensorHandler.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/linux/fsfwconfig/FSFWConfig.h.in b/linux/fsfwconfig/FSFWConfig.h.in index a8519cff..d70bb7b6 100644 --- a/linux/fsfwconfig/FSFWConfig.h.in +++ b/linux/fsfwconfig/FSFWConfig.h.in @@ -72,6 +72,6 @@ static constexpr size_t FSFW_MAX_TM_PACKET_SIZE = 2048; } -#define FSFW_HAL_LINUX_SPI_WIRETAPPING 0 +#define FSFW_HAL_LINUX_SPI_WIRETAPPING 1 #endif /* CONFIG_FSFWCONFIG_H_ */ diff --git a/mission/devices/RadiationSensorHandler.cpp b/mission/devices/RadiationSensorHandler.cpp index 65a877b6..a1eec958 100644 --- a/mission/devices/RadiationSensorHandler.cpp +++ b/mission/devices/RadiationSensorHandler.cpp @@ -58,7 +58,7 @@ ReturnValue_t RadiationSensorHandler::buildTransitionDeviceCommand( *id = RAD_SENSOR::WRITE_SETUP; } else { - return HasReturnvaluesIF::RETURN_OK; + return NOTHING_TO_SEND; } return buildCommandFromCommand(*id, nullptr, 0); }