diff options
| author | Shlomo Hecht <shlomo@twine-s.com> | 2019-04-01 00:13:57 +0300 |
|---|---|---|
| committer | Shlomo Hecht <shlomo@twine-s.com> | 2019-04-01 00:13:57 +0300 |
| commit | df688ddc3e919acd254d79b73eaa22bd73d92062 (patch) | |
| tree | 534f836094074642234dcaaff17d8341acedf020 /Software/PMR/Messages/Debugging | |
| parent | 67903ba41edc58090b41c782036acc1fd05548ea (diff) | |
| download | Tango-df688ddc3e919acd254d79b73eaa22bd73d92062.tar.gz Tango-df688ddc3e919acd254d79b73eaa22bd73d92062.zip | |
prepare protobuf for debug distributors control
Diffstat (limited to 'Software/PMR/Messages/Debugging')
3 files changed, 41 insertions, 0 deletions
diff --git a/Software/PMR/Messages/Debugging/DebugDistributor.proto b/Software/PMR/Messages/Debugging/DebugDistributor.proto new file mode 100644 index 000000000..ea47b523f --- /dev/null +++ b/Software/PMR/Messages/Debugging/DebugDistributor.proto @@ -0,0 +1,22 @@ +syntax = "proto3"; + +package Tango.PMR.Debugging; +option java_package = "com.twine.tango.pmr.debugging"; + +enum DebugDistributor +{ + ControlFilter = 0; + HeatersFilter = 1; + JobFilter = 2; + WasteFilter = 3; + AlarmFilter = 4; + DiagnosticsFilter = 5; + IDSFilter = 6; + ThreadFilter = 7; + GeneralFilter = 8; + CommFilter = 9; + FPGAFilter = 10; + LoadFilter = 11; + InitFilter = 12; + MaintFilter = 13; +} diff --git a/Software/PMR/Messages/Debugging/SetupDebugDisributorsRequest.proto b/Software/PMR/Messages/Debugging/SetupDebugDisributorsRequest.proto new file mode 100644 index 000000000..d3ec6f556 --- /dev/null +++ b/Software/PMR/Messages/Debugging/SetupDebugDisributorsRequest.proto @@ -0,0 +1,9 @@ +syntax = "proto3"; + +package Tango.PMR.Debugging; +option java_package = "com.twine.tango.pmr.debugging"; + +message SetupDebugDisributorsRequest +{ + repeated bool DistributorActive = 1; +}
\ No newline at end of file diff --git a/Software/PMR/Messages/Debugging/SetupDebugDisributorsResponse.proto b/Software/PMR/Messages/Debugging/SetupDebugDisributorsResponse.proto new file mode 100644 index 000000000..4ff68e73c --- /dev/null +++ b/Software/PMR/Messages/Debugging/SetupDebugDisributorsResponse.proto @@ -0,0 +1,10 @@ +syntax = "proto3"; + +import "DebugLogCategory.proto"; + +package Tango.PMR.Debugging; +option java_package = "com.twine.tango.pmr.debugging"; + +message SetupDebugDisributorsResponse +{ +}
\ No newline at end of file |
