blob: 77a26a834b7ef7ab4ce4d15e6ffb6324cb25c2e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
syntax = "proto3";
package Tango.PMR.Stubs;
option java_package = "com.twine.tango.pmr.stubs";
message StubMotorEncoderResponse
{
uint32 EncoderId = 1; //0..8
uint32 EncoderVersion = 2;
int32 MotorSpeed = 3;
bool MotorDirection = 4; // 1-cw 0-ccw
string Status = 5; // Passed/Failed
uint32 StatusWord = 6; // Error number/bit when the status is Failed
}
|