mirror of
https://github.com/eclipse/upm.git
synced 2025-03-16 05:27:28 +03:00

This commit removes functionality that is now present in the bacnetutil class. This simplifies the driver considerably. The examples were modified to reflect the renaming of some utility functions in bacnetutil. Signed-off-by: Jon Trulson <jtrulson@ics.com>
130 lines
3.4 KiB
C++
130 lines
3.4 KiB
C++
/*
|
|
* Author: Jon Trulson <jtrulson@ics.com>
|
|
* Copyright (c) 2016 Intel Corporation.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
* a copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
* the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be
|
|
* included in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include <unistd.h>
|
|
#include <assert.h>
|
|
#include <errno.h>
|
|
#include <iostream>
|
|
#include <stdexcept>
|
|
#include <string>
|
|
|
|
#include "e50hx.hpp"
|
|
|
|
using namespace upm;
|
|
using namespace std;
|
|
|
|
|
|
E50HX::E50HX(uint32_t targetDeviceObjectID) :
|
|
BACNETUTIL(targetDeviceObjectID)
|
|
{
|
|
setDebug(false);
|
|
|
|
// we disable this by default for performance reasons
|
|
checkReliability(false);
|
|
}
|
|
|
|
E50HX::~E50HX()
|
|
{
|
|
}
|
|
|
|
uint16_t E50HX::getAlarmBits()
|
|
{
|
|
return uint16_t(getAnalogInput(AI_Alarm_Bitmap));
|
|
}
|
|
|
|
void E50HX::writeConfig(CFG_VALUES_T config)
|
|
{
|
|
setAnalogValue(AV_Config, float(config));
|
|
}
|
|
|
|
void E50HX::writeSystemType(SYSTEM_TYPES_T systype)
|
|
{
|
|
setAnalogValue(AV_System_Type, float(systype));
|
|
}
|
|
|
|
void E50HX::writeCTRatioPrimary(float ctRatio)
|
|
{
|
|
if (ctRatio < 5 || ctRatio > 32000)
|
|
{
|
|
throw std::out_of_range(std::string(__FUNCTION__)
|
|
+ ": ctRatio must be between 5-32000");
|
|
}
|
|
|
|
setAnalogValue(AV_CT_Ratio_Primary, ctRatio);
|
|
}
|
|
|
|
void E50HX::writeCTRatioSecondary(CT_SECONDARY_T ctRatio)
|
|
{
|
|
setAnalogValue(AV_CT_Ratio_Secondary, ctRatio);
|
|
}
|
|
|
|
void E50HX::writePTRatio(float ptRatio)
|
|
{
|
|
if (ptRatio < 0.01 || ptRatio > 320.0)
|
|
{
|
|
throw std::out_of_range(std::string(__FUNCTION__)
|
|
+ ": ptRatio must be between 0.01-320.0");
|
|
}
|
|
|
|
setAnalogValue(AV_PT_Ratio, ptRatio);
|
|
}
|
|
|
|
void E50HX::writeSystemVoltage(float sysVolts)
|
|
{
|
|
if (sysVolts < 82.0 || sysVolts > 32000.0)
|
|
{
|
|
throw std::out_of_range(std::string(__FUNCTION__)
|
|
+ ": sysVolts must be between 82.0-32000.0");
|
|
}
|
|
|
|
setAnalogValue(AV_System_Voltage, sysVolts);
|
|
}
|
|
|
|
void E50HX::writeDisplayUnits(DISP_UNITS_T dispUnits)
|
|
{
|
|
setAnalogValue(AV_Display_Units, dispUnits);
|
|
}
|
|
|
|
void E50HX::writePhaseLossVT(float phaseLoss)
|
|
{
|
|
if (phaseLoss < 1.0 || phaseLoss > 99.0)
|
|
{
|
|
throw std::out_of_range(std::string(__FUNCTION__)
|
|
+ ": phaseLoss must be between 1.0-99.0");
|
|
}
|
|
|
|
setAnalogValue(AV_Phase_Loss_Voltage_Threshold, phaseLoss);
|
|
}
|
|
|
|
void E50HX::writePhaseLossIT(float phaseLoss)
|
|
{
|
|
if (phaseLoss < 1.0 || phaseLoss > 99.0)
|
|
{
|
|
throw std::out_of_range(std::string(__FUNCTION__)
|
|
+ ": phaseLoss must be between 1.0-99.0");
|
|
}
|
|
|
|
setAnalogValue(AV_Phase_Loss_Imbalance_Threshold, phaseLoss);
|
|
}
|