blob: ef498de0464cbe662b657018497898a217b01b21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
syntax = "proto3";
package Tango.PMR.Stubs;
option java_package = "com.twine.tango.pmr.stubs";
message StubExtFlashReadResponse
{
int32 ReadWord_1 = 1; //
int32 ReadWord_2 = 2; //
int32 ReadWord_3 = 3; //
int32 ReadWord_4 = 4; //
int32 ReadWord_5 = 5; //
string Status = 6; // Passed/Failed
uint32 StatusWord = 7; // Error number/bit when the status is Failed
}
|