aboutsummaryrefslogtreecommitdiffstats
path: root/Software/PMR/Messages/Debugging
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-02-28 11:28:19 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-02-28 11:28:19 +0200
commit2f70caaf340063f90529c3302f2f2a78dda9d40c (patch)
treef3657b46f0a90202d09a8a872eaf560b8bdef526 /Software/PMR/Messages/Debugging
parent687910bc052e1430c8132a5eefe63e20ba6937e0 (diff)
downloadTango-2f70caaf340063f90529c3302f2f2a78dda9d40c.tar.gz
Tango-2f70caaf340063f90529c3302f2f2a78dda9d40c.zip
Implemented PMR Debugging objects.
Diffstat (limited to 'Software/PMR/Messages/Debugging')
-rw-r--r--Software/PMR/Messages/Debugging/DebugLogCategory.proto13
-rw-r--r--Software/PMR/Messages/Debugging/DebugLogRequest.proto9
-rw-r--r--Software/PMR/Messages/Debugging/DebugLogResponse.proto16
3 files changed, 38 insertions, 0 deletions
diff --git a/Software/PMR/Messages/Debugging/DebugLogCategory.proto b/Software/PMR/Messages/Debugging/DebugLogCategory.proto
new file mode 100644
index 000000000..2903fe780
--- /dev/null
+++ b/Software/PMR/Messages/Debugging/DebugLogCategory.proto
@@ -0,0 +1,13 @@
+syntax = "proto3";
+
+package Tango.PMR.Debugging;
+option java_package = "com.twine.tango.pmr.debugging";
+
+enum DebugLogCategory
+{
+ Info = 0;
+ Warning = 1;
+ Error = 2;
+ Critical = 3;
+ Debug = 4;
+}
diff --git a/Software/PMR/Messages/Debugging/DebugLogRequest.proto b/Software/PMR/Messages/Debugging/DebugLogRequest.proto
new file mode 100644
index 000000000..cee914ea3
--- /dev/null
+++ b/Software/PMR/Messages/Debugging/DebugLogRequest.proto
@@ -0,0 +1,9 @@
+syntax = "proto3";
+
+package Tango.PMR.Debugging;
+option java_package = "com.twine.tango.pmr.debugging";
+
+message DebugLogRequest
+{
+
+} \ No newline at end of file
diff --git a/Software/PMR/Messages/Debugging/DebugLogResponse.proto b/Software/PMR/Messages/Debugging/DebugLogResponse.proto
new file mode 100644
index 000000000..56b99a7a6
--- /dev/null
+++ b/Software/PMR/Messages/Debugging/DebugLogResponse.proto
@@ -0,0 +1,16 @@
+syntax = "proto3";
+
+import "DebugLogCategory.proto";
+
+package Tango.PMR.Debugging;
+option java_package = "com.twine.tango.pmr.debugging";
+
+message DebugLogResponse
+{
+ DebugLogCategory Category = 1;
+ string FileName = 2;
+ string LineNumber = 3;
+ uint32 Filter = 4;
+ string Message = 5;
+ uint32 ModuleId = 6;
+} \ No newline at end of file