Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
hspguisourcev301/HspGuiSourceV301/HSPGui/DeviceDescriptions/RegisterInfo.cs
- Committer:
- darienf
- Date:
- 2021-04-10
- Revision:
- 3:36de8b9e4b1a
File content as of revision 3:36de8b9e4b1a:
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();
}
}
}