blob: f481031da58482d8858a211efdc2f35e679fa247 (
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
|
syntax = "proto3";
package Tango.PMR.Stubs;
option java_package = "com.twine.tango.pmr.stubs";
message StubL6470DriverRequest
{
uint32 Run_Value = 1;
uint32 Mov_Value = 2;
bool Direction = 3;
uint32 Time_2_Change_Direction = 4;
bool Display_Tx_ON_LCD = 5;
bool Display_Rx_on_LCD = 6;
uint32 Init_MicroStep = 7;
uint32 Init_Acc = 8;
uint32 Init_Dec = 9;
bool TestBool_1 = 10;
bool TestBool_2 = 11;
bool TestBool_3 = 12;
bool TestBool_4 = 13;
bool TestBool_5 = 14;
uint32 TestUint32_1 = 15;
uint32 TestUint32_2 = 16;
uint32 TestUint32_3 = 17;
uint32 TestUint32_4 = 18;
uint32 TestUint32_5 = 19;
uint32 TestUint32_6 = 20;
}
|