Jakob Meier
89757c447c
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
79 lines
2.6 KiB
C++
79 lines
2.6 KiB
C++
#include "SusDummy.h"
|
|
|
|
#include <objects/systemObjectList.h>
|
|
|
|
#include <cmath>
|
|
#include <cstdlib>
|
|
|
|
SusDummy::SusDummy()
|
|
: ExtendedControllerBase(objects::SUS_0_N_LOC_XFYFZM_PT_XF, objects::NO_OBJECT), susSet(this) {
|
|
ObjectManager::instance()->insert(objects::SUS_6_R_LOC_XFYBZM_PT_XF, this);
|
|
ObjectManager::instance()->insert(objects::SUS_1_N_LOC_XBYFZM_PT_XB, this);
|
|
ObjectManager::instance()->insert(objects::SUS_7_R_LOC_XBYBZM_PT_XB, this);
|
|
ObjectManager::instance()->insert(objects::SUS_2_N_LOC_XFYBZB_PT_YB, this);
|
|
ObjectManager::instance()->insert(objects::SUS_8_R_LOC_XBYBZB_PT_YB, this);
|
|
ObjectManager::instance()->insert(objects::SUS_3_N_LOC_XFYBZF_PT_YF, this);
|
|
ObjectManager::instance()->insert(objects::SUS_9_R_LOC_XBYBZB_PT_YF, this);
|
|
ObjectManager::instance()->insert(objects::SUS_4_N_LOC_XMYFZF_PT_ZF, this);
|
|
ObjectManager::instance()->insert(objects::SUS_10_N_LOC_XMYBZF_PT_ZF, this);
|
|
ObjectManager::instance()->insert(objects::SUS_5_N_LOC_XFYMZB_PT_ZB, this);
|
|
ObjectManager::instance()->insert(objects::SUS_11_R_LOC_XBYMZB_PT_ZB, this);
|
|
}
|
|
|
|
ReturnValue_t SusDummy::initialize() {
|
|
static bool done = false;
|
|
if (not done) {
|
|
done = true;
|
|
ReturnValue_t result = ExtendedControllerBase::initialize();
|
|
if (result != HasReturnvaluesIF::RETURN_OK) {
|
|
return result;
|
|
}
|
|
}
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
}
|
|
|
|
ReturnValue_t SusDummy::handleCommandMessage(CommandMessage* message) { return RETURN_FAILED; }
|
|
|
|
void SusDummy::performControlOperation() {
|
|
iteration++;
|
|
value = sin(iteration / 80. * M_PI + 10) * 10 - 10;
|
|
|
|
susSet.read();
|
|
susSet.temperatureCelcius = value;
|
|
if ((iteration % 100) < 20) {
|
|
susSet.setValidity(false, true);
|
|
} else {
|
|
susSet.setValidity(true, true);
|
|
}
|
|
susSet.commit();
|
|
}
|
|
|
|
ReturnValue_t SusDummy::initializeLocalDataPool(localpool::DataPool& localDataPoolMap,
|
|
LocalDataPoolManager& poolManager) {
|
|
localDataPoolMap.emplace(SUS::SusPoolIds::TEMPERATURE_C, new PoolEntry<float>({0}, 1, true));
|
|
localDataPoolMap.emplace(SUS::SusPoolIds::CHANNEL_VEC, new PoolEntry<uint16_t>({0}));
|
|
|
|
return RETURN_OK;
|
|
}
|
|
|
|
LocalPoolDataSetBase* SusDummy::getDataSetHandle(sid_t sid) {
|
|
switch (sid.ownerSetId) {
|
|
case SUS::SUS_DATA_SET_ID:
|
|
return &susSet;
|
|
default:
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
ReturnValue_t SusDummy::checkModeCommand(Mode_t mode, Submode_t submode,
|
|
uint32_t* msToReachTheMode) {
|
|
if (submode != SUBMODE_NONE) {
|
|
return INVALID_SUBMODE;
|
|
}
|
|
if ((mode != MODE_OFF) && (mode != MODE_ON) && (mode != MODE_NORMAL)) {
|
|
return INVALID_MODE;
|
|
}
|
|
return RETURN_OK;
|
|
}
|