aboutsummaryrefslogtreecommitdiffstats
path: root/Software/PMR
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2021-02-17 23:39:56 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2021-02-17 23:39:56 +0200
commitcbfc5f86577cd3eacac4f97321b75e3e4c0539de (patch)
tree60d5680ac997cae8bc38bdbc8741400a0b833e48 /Software/PMR
parentf9ad6d13e30ce2a2721bcbf631a22095cfca3e4e (diff)
parentf73b3b8043e4f9183a5450afdbb99bcde1b63ff1 (diff)
downloadTango-cbfc5f86577cd3eacac4f97321b75e3e4c0539de.tar.gz
Tango-cbfc5f86577cd3eacac4f97321b75e3e4c0539de.zip
Merged short-cycle-mode branch.
Diffstat (limited to 'Software/PMR')
-rw-r--r--Software/PMR/Messages/Common/MessageType.proto2
-rw-r--r--Software/PMR/Messages/MachineStatus/MachineStatus.proto1
-rw-r--r--Software/PMR/Messages/MachineStatus/SetInkAutoFillingModeRequest.proto9
-rw-r--r--Software/PMR/Messages/MachineStatus/SetInkAutoFillingModeResponse.proto9
4 files changed, 21 insertions, 0 deletions
diff --git a/Software/PMR/Messages/Common/MessageType.proto b/Software/PMR/Messages/Common/MessageType.proto
index d4dced16e..9475c9681 100644
--- a/Software/PMR/Messages/Common/MessageType.proto
+++ b/Software/PMR/Messages/Common/MessageType.proto
@@ -285,6 +285,8 @@ enum MessageType
StartMachineStatusUpdateResponse = 9001;
StopMachineStatusUpdateRequest = 9002;
StopMachineStatusUpdateResponse = 9003;
+ SetInkAutoFillingModeRequest = 9004;
+ SetInkAutoFillingModeResponse = 9005;
//Power
StartPowerDownRequest = 10000;
diff --git a/Software/PMR/Messages/MachineStatus/MachineStatus.proto b/Software/PMR/Messages/MachineStatus/MachineStatus.proto
index 312e26e01..4e0649510 100644
--- a/Software/PMR/Messages/MachineStatus/MachineStatus.proto
+++ b/Software/PMR/Messages/MachineStatus/MachineStatus.proto
@@ -13,4 +13,5 @@ message MachineStatus
repeated IDSPackLevel IDSPacksLevels = 2;
double OverallTemperature = 3;
SpoolState SpoolState = 4;
+ bool AutoInkFillingDisabled = 5;
} \ No newline at end of file
diff --git a/Software/PMR/Messages/MachineStatus/SetInkAutoFillingModeRequest.proto b/Software/PMR/Messages/MachineStatus/SetInkAutoFillingModeRequest.proto
new file mode 100644
index 000000000..68bb65fca
--- /dev/null
+++ b/Software/PMR/Messages/MachineStatus/SetInkAutoFillingModeRequest.proto
@@ -0,0 +1,9 @@
+syntax = "proto3";
+
+package Tango.PMR.MachineStatus;
+option java_package = "com.twine.tango.pmr.machinestatus";
+
+message SetInkAutoFillingModeRequest
+{
+ bool Disabled = 1;
+} \ No newline at end of file
diff --git a/Software/PMR/Messages/MachineStatus/SetInkAutoFillingModeResponse.proto b/Software/PMR/Messages/MachineStatus/SetInkAutoFillingModeResponse.proto
new file mode 100644
index 000000000..4142e1bf8
--- /dev/null
+++ b/Software/PMR/Messages/MachineStatus/SetInkAutoFillingModeResponse.proto
@@ -0,0 +1,9 @@
+syntax = "proto3";
+
+package Tango.PMR.MachineStatus;
+option java_package = "com.twine.tango.pmr.machinestatus";
+
+message SetInkAutoFillingModeResponse
+{
+
+} \ No newline at end of file