mattercontrol/MatterControl.Printing/Communication/FrostedSerial/IFrostedSerialPortFactory.cs
2019-02-04 16:18:04 -08:00

12 lines
344 B
C#

namespace MatterHackers.SerialPortCommunication.FrostedSerial
{
public interface IFrostedSerialPortFactory
{
bool IsWindows { get; }
bool SerialPortAlreadyOpen(string portName);
IFrostedSerialPort Create(string serialPortName);
IFrostedSerialPort CreateAndOpen(string serialPortName, int baudRate, bool DtrEnableOnConnect);
}
}