blob: 9c0d90a3e9050fe8ec6ce7f190a424f6306df19b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
syntax = "proto3";
package Tango.PMR.Stubs;
option java_package = "com.twine.tango.pmr.stubs";
message StubGPIOReadByteResponse
{
string PortId = 1; // A..
uint32 ByteValue = 2;
string Status = 3; // Passed/Failed
uint32 StatusWord = 4; // Error number/bit when the status is Failed
}
|