aboutsummaryrefslogtreecommitdiffstats
path: root/Software/PMR/Messages/Stubs/StubMotorMovResponse.proto
blob: d39f584ad047d8fcfe98468d7abe6f3aa06ce1c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
syntax = "proto3";

package Tango.PMR.Stubs;
option java_package = "com.twine.tango.pmr.stubs";

message StubMotorMovResponse
{
		uint32 Motor_ID = 1;
		uint32 Position = 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;

}