diff --git a/proto/app/app_config.proto b/proto/app/app_config.proto index 356504f..1226c16 100644 --- a/proto/app/app_config.proto +++ b/proto/app/app_config.proto @@ -9,11 +9,11 @@ message Connection string mode = 3; } -message Event +message Trigger { string message = 1; string signal = 2; - int64 comparator = 3; + uint32 comparator = 3; double value = 4; uint32 color = 5; } @@ -46,7 +46,7 @@ message AppConfig Connection connection = 4; map savedConnections = 5; repeated string activeTabs = 6; - repeated Event events = 7; + repeated Trigger triggers = 7; repeated CustomPlot customPlots = 8; map filesPaths = 9; map stringCache = 10;