blob: de881033f8cc71129403b2eca8ba11099fab7e02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
syntax = "proto3";
package Tango.PMR.Stubs;
option java_package = "com.twine.tango.pmr.stubs";
message StubMotorRunResponse
{
uint32 Motor_ID = 1;
double Speed = 2;
uint32 Status_Reg = 3;
bool Direction = 4;// Reverse / Forward
uint32 Mot_Status = 5; //Stopped / Acceleration / Deceleration / Constant speed
bool STEP_LOSS_A = 6;
bool STEP_LOSS_B = 7;
bool BUSY = 8;
}
|