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