Big changes
This commit is contained in:
62
Source/TSRealLib/HAL/Interfaces/IChiller/IChiller.cs
Normal file
62
Source/TSRealLib/HAL/Interfaces/IChiller/IChiller.cs
Normal file
@@ -0,0 +1,62 @@
|
||||
// UNCLASSIFIED
|
||||
/*-------------------------------------------------------------------------
|
||||
RAYTHEON PROPRIETARY: THIS DOCUMENT CONTAINS DATA OR INFORMATION
|
||||
PROPRIETARY TO RAYTHEON COMPANY AND IS RESTRICTED TO USE ONLY BY PERSONS
|
||||
AUTHORIZED BY RAYTHEON COMPANY IN WRITING TO USE IT. DISCLOSURE TO
|
||||
UNAUTHORIZED PERSONS WOULD LIKELY CAUSE SUBSTANTIAL COMPETITIVE HARM TO
|
||||
RAYTHEON COMPANY'S BUSINESS POSITION. NEITHER SAID DOCUMENT NOR ITS
|
||||
CONTENTS SHALL BE FURNISHED OR DISCLOSED TO OR COPIED OR USED BY PERSONS
|
||||
OUTSIDE RAYTHEON COMPANY WITHOUT THE EXPRESS WRITTEN APPROVAL OF RAYTHEON
|
||||
COMPANY.
|
||||
|
||||
THIS PROPRIETARY NOTICE IS NOT APPLICABLE IF DELIVERED TO THE U.S.
|
||||
GOVERNMENT.
|
||||
|
||||
UNPUBLISHED WORK - COPYRIGHT RAYTHEON COMPANY.
|
||||
-------------------------------------------------------------------------*/
|
||||
|
||||
using Raytheon.Communication;
|
||||
using System;
|
||||
|
||||
namespace Raytheon.Instruments
|
||||
{
|
||||
/// <summary>
|
||||
/// This interfaces defines the API for a chiller system
|
||||
/// </summary>
|
||||
[UmsContract]
|
||||
public interface IChiller : IInstrument
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[UmsCommand("IChiller.DisableFlow")]
|
||||
void DisableFlow();
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[UmsCommand("IChiller.EnableFlow")]
|
||||
void EnableFlow();
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
[UmsCommand("IChiller.GetCoolantSetpoint")]
|
||||
double GetCoolantSetpoint();
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
[UmsCommand("IChiller.GetCoolantTemperature")]
|
||||
double GetCoolantTemperature();
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <param name="temp"></param>
|
||||
[UmsCommand("IChiller.SetCoolantTemperature")]
|
||||
void SetCoolantTemperature(double temp);
|
||||
}
|
||||
}
|
||||
19
Source/TSRealLib/HAL/Interfaces/IChiller/IChiller.csproj
Normal file
19
Source/TSRealLib/HAL/Interfaces/IChiller/IChiller.csproj
Normal file
@@ -0,0 +1,19 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Import Project="$(SolutionDir)Solution.props" />
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net472</TargetFramework>
|
||||
<AssemblyName>Raytheon.Instruments.Chiller.Contracts</AssemblyName>
|
||||
<Description>IChiller Instrument Interface</Description>
|
||||
<Product>HAL</Product>
|
||||
|
||||
<!-- Static versioning (Suitable for Development) -->
|
||||
<!-- Disable the line below for dynamic versioning -->
|
||||
<Version>1.0.3.0</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Raytheon.Instruments.Contracts" Version="1.*" />
|
||||
<PackageReference Include="Raytheon.Common" Version="1.0.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user