From 0f9d7dd502fcfcfd456811d9657cd41096344256 Mon Sep 17 00:00:00 2001
From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch>
Date: Tue, 13 Mar 2018 13:29:37 +0100
Subject: [PATCH] Add missing docstrings

---
 ATxService/AutoTx.cs | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

diff --git a/ATxService/AutoTx.cs b/ATxService/AutoTx.cs
index 6a86b6c..95415d5 100644
--- a/ATxService/AutoTx.cs
+++ b/ATxService/AutoTx.cs
@@ -40,11 +40,27 @@ namespace ATxService
         /// </summary>
         private readonly List<string> _incomingIgnore = new List<string>();
 
+        /// <summary>
+        /// The CPU load monitoring object.
+        /// </summary>
+        private readonly Cpu _cpu;
+
         private RoboCommand _roboCommand;
+        
+        /// <summary>
+        /// Size of the file currently being transferred (in bytes). Zero if no transfer running.
+        /// </summary>
         private long _txCurFileSize;
+
+        /// <summary>
+        /// Progress (in percent) of the file currently being transferred. Zero if no transfer.
+        /// </summary>
         private int _txCurFileProgress;
+
+        /// <summary>
+        /// Internal counter to introduce a delay between two subsequent transfers.
+        /// </summary>
         private int _waitCyclesBeforeNextTx;
-        private Cpu _cpu;
 
         private DateTime _lastUserDirCheck = DateTime.MinValue;
 
-- 
GitLab