Files
2026-04-23 17:50:07 +02:00

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)
{
}
}
}