예제 #1
0
파일: frmMain.cs 프로젝트: Rainerhu/XBeeP
 public frmMain()
 {
     InitializeComponent();
     comm = new CommunicationManager();
     comm.newCompleteFrame += delegate(object sender, DataEventArgs e) { UpdateFrameList(e.Frame); };
     resolution             = (int)Math.Pow(2, (int)resolutionUpDown.Value);
     vref = (float)vrefUpDown.Value;
 }
예제 #2
0
파일: frmMain.cs 프로젝트: Skye07/XBeeP
 public frmMain()
 {
     InitializeComponent();
     comm = new CommunicationManager();
     comm.newCompleteFrame += delegate(object sender, DataEventArgs e) { UpdateFrameList(e.Frame); };
     resolution = (int)Math.Pow(2, (int)resolutionUpDown.Value);
     vref = (float)vrefUpDown.Value;
 }