blob: b5beda6ded616484ebc62799d139e481563e764f (
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
|
syntax = "proto3";
package Tango.PMR.Stubs;
option java_package = "com.twine.tango.pmr.stubs";
message StubDispenserEEpromData
{
uint32 Header = 1;
uint32 TableLength = 2;
uint32 Tableversion = 3;
string DispenserP_N = 4;
string PCBS_N = 5;
string PCBPartNumber = 6;
string DispenserS_N = 7;
int32 MinimalPressure = 8;
int32 MaximalPressure = 9;
int32 MinimalMV = 10;
int32 MaximalMV = 11;
uint32 TotalCycles = 12;
int32 BubbleSize = 13;
int32 AVG_Nl_stepValue_1_4 = 14;
int32 AVG_Nl_stepValue_2_4 = 15;
int32 AVG_Nl_stepValue_3_4 = 16;
int32 AVG_Nl_stepValue_4_4 = 17;
int32 SW_Reserve = 18;
int32 Spare1_pressure = 19;
int32 Spare2_pressure = 20;
uint32 MotorPulsesPerCycle = 21;
uint32 Color = 22;
int32 PressureSlope = 23;
string ProductionDate = 24;
uint32 ATSlocation = 25;
int32 Spare1 = 26;
int32 Spare2 = 27;
uint32 ATSChannel = 28;
bool UnitEmpty = 29;
bool DryRunPass_Fail = 30;
bool FlowPass_Fail = 31;
uint32 CheckSum = 32;
}
|