Made MatterControl run as a .net standard app
Moving matter control to a lib and creating a new exe to run it
This commit is contained in:
parent
8b4790e493
commit
bed90234e7
485 changed files with 283 additions and 571 deletions
|
|
@ -0,0 +1,15 @@
|
|||
using MatterHackers.Plugins.X3GDriver;
|
||||
using MatterHackers.SerialPortCommunication.FrostedSerial;
|
||||
|
||||
namespace MatterHackers.MatterControl.Plugins.X3GDriver
|
||||
{
|
||||
public class X3GFrostedSerialPortFactory : FrostedSerialPortFactory
|
||||
{
|
||||
override protected string GetDriverType() => "X3G";
|
||||
|
||||
public override IFrostedSerialPort Create(string serialPortName)
|
||||
{
|
||||
return new X3GSerialPortWrapper(serialPortName);
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue