You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
508 B
20 lines
508 B
namespace MultiTerm.Protocols.UsbHid;
|
|
|
|
public interface IUsbHidProtocolSettings : IProtocolSettings
|
|
{
|
|
/// <summary>
|
|
/// Vendor ID of the target device. 16bit number.
|
|
/// </summary>
|
|
ushort VendorId { get; }
|
|
|
|
/// <summary>
|
|
/// Product ID of the target device. 16bit number.
|
|
/// </summary>
|
|
ushort ProductId { get; }
|
|
|
|
/// <summary>
|
|
/// Serial number of the target device.
|
|
/// If null, not used to connect.
|
|
/// </summary>
|
|
string SerialNumber { get; set; }
|
|
}
|
|
|