repo time

Dependencies:   mbed MAX14720 MAX30205 USBDevice

Revision:
20:6d2af70c92ab
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HspGuiSourceV301/HSPGui/DeviceDescriptions/RegisterInfo.cs	Tue Apr 06 06:41:40 2021 +0000
@@ -0,0 +1,30 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using HealthSensorPlatform.DeviceDescriptions;
+
+namespace Maxim.CustomControls
+{
+    public class RegisterInfo
+    {
+        public String name;
+        public int address;
+        public int value = 0;
+        public int numberOf;
+        public RegisterBitDescriptions description;
+        public RegisterInfo(String name, int address)
+        {
+            this.name = name;
+            this.address = address;
+            description = new RegisterBitDescriptions();
+        }
+        public RegisterInfo(String name, int address, int numberOf)
+        {
+            this.name = name;
+            this.address = address;
+            this.numberOf = numberOf;
+            description = new RegisterBitDescriptions();
+        }
+    }
+}