blob: 30953abc72433fa42380c1ef507eb917fa14dc92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
syntax = "proto3";
package Tango.PMR.Stubs;
option java_package = "com.twine.tango.pmr.stubs";
message StubL6470DriverResponse
{
uint32 Run_Value = 1;
uint32 Mov_Value = 2;
bool TestBool_1 = 3;
bool TestBool_2 = 4;
bool TestBool_3 = 5;
bool TestBool_4 = 6;
bool TestBool_5 = 7;
uint32 TestUint32_1 = 8;
uint32 TestUint32_2 = 9;
uint32 TestUint32_3 = 10;
uint32 TestUint32_4 = 11;
uint32 TestUint32_5 = 12;
uint32 TestUint32_6 = 13;
string Status = 14; // Passed/Failed
uint32 StatusWord = 15; // Error number/bit when the status is Failed
}
|