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