repo time

Dependencies:   mbed MAX14720 MAX30205 USBDevice

Revision:
20:6d2af70c92ab
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HspGuiSourceV301/HSPGui/DeviceDescriptions/RegisterBitDescriptions.cs	Tue Apr 06 06:41:40 2021 +0000
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace HealthSensorPlatform.DeviceDescriptions
+{
+    public class RegisterBitDescriptions
+    {
+        public List<RegisterBitDescription> list = new List<RegisterBitDescription>();
+        public class RegisterBitDescription
+        {
+            public string bit { get; set; }
+            public string name { get; set; }
+            public string description { get; set; }
+        }
+        public void Add(string _bit, string _name, string _description)
+        {
+            list.Add(new RegisterBitDescription() { bit = _bit, name = _name, description = _description });
+        }
+    }
+}