예제 #1
0
파일: Car_Helper.py 프로젝트: Alsvr/SMART
 def run(self):
     ccddata  = None
     with QtCore.QMutexLocker(self.mutex):
         self.stoped = False
     
     try:
         self.uart.open()
     except SerialException,e:
         self.getwrong_message = e
         self.emit(QtCore.SIGNAL("UartData"), ccddata,self.getwrong_message)
예제 #2
0
파일: Car_Helper.py 프로젝트: Alsvr/SMART
 def isStop(self):
     with QtCore.QMutexLocker(self.mutex):
         return self.stoped
예제 #3
0
파일: Car_Helper.py 프로젝트: Alsvr/SMART
 def stop(self):
     with QtCore.QMutexLocker(self.mutex):
         self.uart.close()
         self.getwrong_message = None
         self.stoped = True