blob: 689b5ff12bec2f1da2f6d90925a72cac3bafd27a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
syntax = "proto3";
package Tango.PMR.Stubs;
option java_package = "com.twine.tango.pmr.stubs";
message StubF3Gpo01WriteRequest
{
bool F3_GPO_LED4 = 1;//value
bool Write_F3_GPO_LED4 = 2;//write
bool F3_GPO_LED3 = 3;
bool Write_F3_GPO_LED3 = 4;
bool F3_GPO_LED2 = 5;
bool Write_F3_GPO_LED2 = 6;
bool F3_GPO_LED1 = 7;
bool Write_F3_GPO_LED1 = 8;
bool F3_GPO_EXTWINDER_SSR11_CTRL = 9;
bool Write_F3_GPO_EXTWINDER_SSR11_CTRL = 10;
bool F3_GPO_BUZZER = 11;
bool Write_F3_GPO_BUZZER = 12;
}
|