blob: 51fd8531175319bc8d4c9dce9c71aa1dbe115cb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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 DeviceId = 2;
uint32 ModuleDeviceId = 3;
uint32 AlarmValue = 4;
bool AlarmDirection = 5;
Debugging.DebugLogCategory Severity = 6;
uint32 DebounceValue = 7;
Diagnostics.EventType EventType = 8;
string EventName = 9;
bool IsPersistent = 10;
}
|