diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-05-06 13:50:14 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-05-06 13:50:14 +0300 |
| commit | c14073e78d2c5b9569f91f47609d431da48ba706 (patch) | |
| tree | 1498d47e10c6e97d28c3f45f5f9ac57276801a98 /Software/PMR/Messages/Debugging | |
| parent | 551ca57984c369ce6084a612c8def44e2dbc3cc8 (diff) | |
| download | Tango-c14073e78d2c5b9569f91f47609d431da48ba706.tar.gz Tango-c14073e78d2c5b9569f91f47609d431da48ba706.zip | |
Added start/stop diagnostics and debugging on PMR.
Added device info to connected machine view.
Added enable/disable diagnostics/debugging to connected machine view.
Improved transfer rate calculation.
Diffstat (limited to 'Software/PMR/Messages/Debugging')
4 files changed, 20 insertions, 2 deletions
diff --git a/Software/PMR/Messages/Debugging/StartDebugLogRequest.proto b/Software/PMR/Messages/Debugging/StartDebugLogRequest.proto index cee914ea3..6e74cd36b 100644 --- a/Software/PMR/Messages/Debugging/StartDebugLogRequest.proto +++ b/Software/PMR/Messages/Debugging/StartDebugLogRequest.proto @@ -3,7 +3,7 @@ syntax = "proto3"; package Tango.PMR.Debugging; option java_package = "com.twine.tango.pmr.debugging"; -message DebugLogRequest +message StartDebugLogRequest { }
\ No newline at end of file diff --git a/Software/PMR/Messages/Debugging/StartDebugLogResponse.proto b/Software/PMR/Messages/Debugging/StartDebugLogResponse.proto index 3e7ca4c49..6648604a1 100644 --- a/Software/PMR/Messages/Debugging/StartDebugLogResponse.proto +++ b/Software/PMR/Messages/Debugging/StartDebugLogResponse.proto @@ -5,7 +5,7 @@ import "DebugLogCategory.proto"; package Tango.PMR.Debugging; option java_package = "com.twine.tango.pmr.debugging"; -message DebugLogResponse +message StartDebugLogResponse { DebugLogCategory Category = 1; string FileName = 2; diff --git a/Software/PMR/Messages/Debugging/StopDebugLogRequest.proto b/Software/PMR/Messages/Debugging/StopDebugLogRequest.proto new file mode 100644 index 000000000..b5f37dc31 --- /dev/null +++ b/Software/PMR/Messages/Debugging/StopDebugLogRequest.proto @@ -0,0 +1,9 @@ +syntax = "proto3"; + +package Tango.PMR.Debugging; +option java_package = "com.twine.tango.pmr.debugging"; + +message StopDebugLogRequest +{ + +}
\ No newline at end of file diff --git a/Software/PMR/Messages/Debugging/StopDebugLogResponse.proto b/Software/PMR/Messages/Debugging/StopDebugLogResponse.proto new file mode 100644 index 000000000..ed1961c47 --- /dev/null +++ b/Software/PMR/Messages/Debugging/StopDebugLogResponse.proto @@ -0,0 +1,9 @@ +syntax = "proto3"; + +package Tango.PMR.Debugging; +option java_package = "com.twine.tango.pmr.debugging"; + +message StopDebugLogResponse +{ + +}
\ No newline at end of file |
