예제 #1
0
파일: rtc6.cs 프로젝트: li1794/rtclib
 public bool ListLaserOn(double msec)
 {
     if (this.CtlGetStatus(RtcStatus.Aborted))
     {
         return(false);
     }
     if (!this.IsListReady(1))
     {
         return(false);
     }
     RTC6Wrap.n_laser_on_list(this.Index + 1, (uint)(msec / 100.0));
     return(true);
 }