18 lines
444 B
C#
18 lines
444 B
C#
using System;
|
|
using System.IO.Ports;
|
|
using Xylem.Common.Hardware.Interfaces.Ports.PortCore;
|
|
|
|
namespace Xylem.Common.Hardware.Interfaces.Ports.SerialPorts
|
|
{
|
|
/// <inheritdoc />
|
|
public class UartSerialPort : BaseSerialPort
|
|
{
|
|
/// <inheritdoc />
|
|
public UartSerialPort(String ident, SerialPort serialPort, TransmitPortSettings setting) : base(ident, serialPort, setting)
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
}
|