mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
18 lines
580 B
C#
18 lines
580 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.IO.Ports;
|
|
|
|
namespace Cosmos.Build.Windows {
|
|
public class DebugConnectorSerial : DebugConnectorStream {
|
|
private SerialPort mPort;
|
|
public DebugConnectorSerial(byte aPort) {
|
|
// TODO: MtW - Make COM port configurable
|
|
mPort = new SerialPort("COM" + aPort, 9600, Parity.None, 8, StopBits.One);
|
|
mPort.Handshake = Handshake.None;
|
|
mPort.Open();
|
|
Start(mPort.BaseStream);
|
|
}
|
|
}
|
|
}
|