blob: acefff8840c6d4805a976d7e4e965af928287f52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
syntax = "proto3";
package Tango.PMR.Stubs;
option java_package = "com.twine.tango.pmr.stubs";
message StubMotorStopResponse
{
uint32 Motor_ID = 1;
uint32 Mot_Status = 2;// Stopped / Acceleration / Deceleration / Constant speed
bool HiZ = 3;// 1 - high impedance state.
bool BUSY = 4;
}
|