Start() 공개 메소드

public Start ( Coder coder ) : void
coder Coder
리턴 void
예제 #1
0
파일: Coder.cs 프로젝트: AlexAlbala/MaCRo
 public void Start(MainWindow display)
 {
     this.display = display;
     t            = new SerialTransportAddress("COM3", false);
     transport    = new SerialTransport(t, 9600);
     transport.Start(this);
 }
예제 #2
0
파일: Coder.cs 프로젝트: AlexAlbala/MaCRo
 public void Start(MainWindow display)
 {
     this.display = display;
     t = new SerialTransportAddress("COM3", false);
     transport = new SerialTransport(t, 9600);
     transport.Start(this);
 }