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