コード例 #1
0
        public RS485Base(RS485 rs)
            : this()
        {
            this.rs = rs;

            rs.Port.ErrorReceived += new System.IO.Ports.SerialErrorReceivedEventHandler(Port_ErrorReceived);
        }
コード例 #2
0
        public RS485Base(String portname)
            : this()
        {
            rs = new RS485(portname);

            rs.Port.ErrorReceived += new System.IO.Ports.SerialErrorReceivedEventHandler(Port_ErrorReceived);
        }
コード例 #3
0
 public RS485VooServer(RS485 rs)
     : base(rs)
 {
 }
コード例 #4
0
 public RS485PacketServer(RS485 rs)
     : base(rs)
 {
 }
コード例 #5
0
 public RS485Server(RS485 rs)
     : base(rs)
 {
     rs.Port.DataReceived += new System.IO.Ports.SerialDataReceivedEventHandler(Port_DataReceived);
 }