blob: 49f1928cd871ca4d674fbd2959e51960a641524e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
syntax = "proto3";
//This file is auto-generated. Do not modify!
import "HardwarePidControlType.proto";
package Tango.PMR.Hardware;
option java_package = "com.twine.tango.pmr.hardware";
message HardwarePidControl
{
HardwarePidControlType HardwarePidControlType = 1;
int32 OutputProportionalPowerLimit = 2;
int32 OutputProportionalBand = 3;
int32 IntegralTime = 4;
int32 DerivativeTime = 5;
int32 SensorCorrectionAdjustment = 6;
int32 SensorMinValue = 7;
int32 SensorMaxValue = 8;
int32 SetPointRampRateorSoftStartRamp = 9;
int32 SetPointControlOutputRate = 10;
int32 ControlOutputType = 11;
int32 SsrControlOutputType = 12;
int32 OutputOnOffHysteresisValue = 13;
int32 ProcessVariableSamplingRate = 14;
int32 PvInputFilterFactorMode = 15;
}
|