![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
repo time
Dependencies: mbed MAX14720 MAX30205 USBDevice
HspGuiSourceV301/HSPGui/DeviceDescriptions/RegisterInfo.cs@20:6d2af70c92ab, 2021-04-06 (annotated)
- Committer:
- darienf
- Date:
- Tue Apr 06 06:41:40 2021 +0000
- Revision:
- 20:6d2af70c92ab
another repo
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
darienf | 20:6d2af70c92ab | 1 | using System; |
darienf | 20:6d2af70c92ab | 2 | using System.Collections.Generic; |
darienf | 20:6d2af70c92ab | 3 | using System.Linq; |
darienf | 20:6d2af70c92ab | 4 | using System.Text; |
darienf | 20:6d2af70c92ab | 5 | using HealthSensorPlatform.DeviceDescriptions; |
darienf | 20:6d2af70c92ab | 6 | |
darienf | 20:6d2af70c92ab | 7 | namespace Maxim.CustomControls |
darienf | 20:6d2af70c92ab | 8 | { |
darienf | 20:6d2af70c92ab | 9 | public class RegisterInfo |
darienf | 20:6d2af70c92ab | 10 | { |
darienf | 20:6d2af70c92ab | 11 | public String name; |
darienf | 20:6d2af70c92ab | 12 | public int address; |
darienf | 20:6d2af70c92ab | 13 | public int value = 0; |
darienf | 20:6d2af70c92ab | 14 | public int numberOf; |
darienf | 20:6d2af70c92ab | 15 | public RegisterBitDescriptions description; |
darienf | 20:6d2af70c92ab | 16 | public RegisterInfo(String name, int address) |
darienf | 20:6d2af70c92ab | 17 | { |
darienf | 20:6d2af70c92ab | 18 | this.name = name; |
darienf | 20:6d2af70c92ab | 19 | this.address = address; |
darienf | 20:6d2af70c92ab | 20 | description = new RegisterBitDescriptions(); |
darienf | 20:6d2af70c92ab | 21 | } |
darienf | 20:6d2af70c92ab | 22 | public RegisterInfo(String name, int address, int numberOf) |
darienf | 20:6d2af70c92ab | 23 | { |
darienf | 20:6d2af70c92ab | 24 | this.name = name; |
darienf | 20:6d2af70c92ab | 25 | this.address = address; |
darienf | 20:6d2af70c92ab | 26 | this.numberOf = numberOf; |
darienf | 20:6d2af70c92ab | 27 | description = new RegisterBitDescriptions(); |
darienf | 20:6d2af70c92ab | 28 | } |
darienf | 20:6d2af70c92ab | 29 | } |
darienf | 20:6d2af70c92ab | 30 | } |