Guest User

Untitled

a guest
May 25th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. In [1]: run cc1111usbgui.py
  2. QGtkStyle was unable to detect the current GTK+ theme.
  3. Qt: Session management error: None of the authentication protocols specified are supported
  4. waiting (resetup)
  5. <usb.Device object at 0x1ed7010>
  6. stepone
  7. ---------------------------------------------------------------------------
  8. CC111xTimeoutException Traceback (most recent call last)
  9.  
  10. /home/gerard/programs/cc1111usb/trunk/clients/cc1111usbgui.py in handle_sendstart(self)
  11. 109 d = USBDongle()
  12. 110 print "stepone"
  13. --> 111 d.setModeIDLE()
  14. 112 print "steptwo"
  15. 113 for i in range(self.registerTable.rowCount()):
  16.  
  17. /home/gerard/programs/cc1111usb/trunk/clients/cc1111client.pyc in setModeIDLE(self)
  18. 678
  19. 679 def setModeIDLE(self):
  20. --> 680 self.poke(X_RFST, "%c"%RFST_SIDLE)
  21. 681
  22. 682 def setModeTXRXON(self):
  23.  
  24. /home/gerard/programs/cc1111usb/trunk/clients/cc1111client.pyc in poke(self, addr, data)
  25. 628
  26. 629 def poke(self, addr, data):
  27. --> 630 r = self.send(APP_SYSTEM, SYS_CMD_POKE, struct.pack("<H", addr) + data)
  28. 631 return r
  29. 632
  30.  
  31. /home/gerard/programs/cc1111usb/trunk/clients/cc1111client.pyc in send(self, app, cmd, buf, wait)
  32. 537 self.xmit_queue.append(msg)
  33. 538 self.xsema.release()
  34. --> 539 return self.recv(app, cmd, wait)
  35. 540
  36. 541 def getDebugCodes(self, timeout=100):
  37.  
  38. /home/gerard/programs/cc1111usb/trunk/clients/cc1111client.pyc in recv(self, app, cmd, wait)
  39. 505 time.sleep(.001) # only hits here if we don't have something in queue
  40. 506
  41. --> 507 raise(CC111xTimeoutException())
  42. 508
  43. 509 def recvAll(self, app, cmd=None):
  44.  
  45. CC111xTimeoutException: Timeout waiting for USB response.
Add Comment
Please, Sign In to add comment