From 24292197223caf2ffa1a771c38b2e2f7418ad03e Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Sun, 15 Dec 2019 16:13:47 +0200 Subject: Added PowerDown and ThreadLoading to PMR. Removed old ThreadLoading from PMR diagnostics. --- .../PMR/Messages/ThreadLoading/ThreadLoadingState.proto | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Software/PMR/Messages/ThreadLoading/ThreadLoadingState.proto (limited to 'Software/PMR/Messages/ThreadLoading/ThreadLoadingState.proto') diff --git a/Software/PMR/Messages/ThreadLoading/ThreadLoadingState.proto b/Software/PMR/Messages/ThreadLoading/ThreadLoadingState.proto new file mode 100644 index 000000000..7f0eb5f98 --- /dev/null +++ b/Software/PMR/Messages/ThreadLoading/ThreadLoadingState.proto @@ -0,0 +1,15 @@ +syntax = "proto3"; + +package Tango.PMR.ThreadLoading; +option java_package = "com.twine.tango.pmr.threadloading"; + +enum ThreadLoadingState +{ + None = 0; + Preparing = 1; + ReadyForLoading = 2; + PreparationError = 3; + Finalizing = 4; + FinalizationError = 5; + Completed = 6; +} \ No newline at end of file -- cgit v1.3.1