blob: cae31c04a44b58b4702f648979ef04253c9ff5c4 (
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
44
45
46
47
48
49
50
51
52
53
|
syntax = "proto3";
package Tango.PMR.Stubs;
option java_package = "com.twine.tango.pmr.stubs";
message StubHeadEEpromData
{
uint32 Header = 1;
uint32 Table_Length = 2;
uint32 Table_version = 3;
string Head_SN = 4;
string PCB_SN = 5;
string Head_Part_Number = 6;
string PCB_Part_Number = 7;
uint32 RunningHours = 8;
uint32 SW_Reserve = 9;
string TestPassFail = 10;
uint32 ATS_Location = 11;
double Orifice_Waste_Level_V0_ml = 12;
uint32 HeadType = 13;
uint32 BlowerRunHours1 = 14;
uint32 BlowerRunHours2 = 15;
uint32 FanFilterMaxLifecycle = 16;
uint32 FansFilterUsageHours = 17;
uint32 FilterSpare1 = 18;
uint32 FilterSpare2 = 19;
uint32 BenchTestD = 20;
uint32 Spare1 = 21;
uint32 Spare2 = 22;
string ProductionTestDate = 23;
uint32 FuncTestStatus = 24;
string PresSensPCB_SN = 25;
string PresSensPCB_PN = 26;
string PressCalibDate1 = 27;
uint32 PressWithoutBlower_mV1 = 28;
uint32 PressWithMinBlower_mV1 = 29;
uint32 PressMaxPress_mV1 = 30;
string PressCalibDate2 = 31;
uint32 PressWithoutBlower_mV2 = 32;
uint32 PressWithMinBlower_mV2 = 33;
uint32 PressMaxPress_mV2 = 34;
uint32 FansMinPWM = 35;
uint32 FansMinRPM = 36;
uint32 FansMaxPWM = 37;
uint32 FansMaxRPM = 38;
uint32 FansNomPWM = 39;
uint32 FansNomRPM = 40;
uint32 FansLimitRPM = 41;// [%] below Nom
uint32 FansTachoPPR = 42;
uint32 FansSpare1 = 43;
uint32 FansSpare2 = 44;
uint32 CheckSum = 45;
}
|