blob: 1dbd9515d214640c4332e317336198469390c6b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
syntax = "proto3";
package Tango.PMR.EmbeddedParameters;
option java_package = "com.twine.tango.pmr.embeddedparameters";
import "AlarmSourceType.proto";
import "DebugLogCategory.proto";
import "EventType.proto";
message AlarmHandlingItem
{
AlarmSourceType AlarmSource = 1;
uint32 Frequency = 2; //1/10/100/1000
uint32 DeviceId = 3;
uint32 ModuleDeviceId = 4;
uint32 AlarmValue = 5;
bool AlarmDirection = 6;
Debugging.DebugLogCategory Severity = 7;
uint32 Predecessor = 8;
uint32 DebounceValue = 9;
Diagnostics.EventType EventType = 10;
string EventName = 11;
}
|