mattercontrol/MatterControl.Printing/Communication/FrostedSerial/IFrostedSerialPortFactory.cs

13 lines
344 B
C#
Raw Normal View History

2019-02-04 08:41:08 -08:00
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);
}
}