changed gex transport to use the new GEX vid pid by default

This commit is contained in:
2018-03-28 00:47:52 +02:00
parent 20511f34f3
commit b697246e55
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -166,7 +166,7 @@ class TrxRawUSB (BaseGexTransport):
self.dataSem = threading.Semaphore()
self.dataSem.acquire()
GEX_ID = (0x0483, 0x572a)
GEX_ID = (0x1209, 0x4c60)
# -------------------- FIND THE DEVICE ------------------------
+3 -3
View File
@@ -113,9 +113,9 @@ class GexIniEditor(QtGui.QMainWindow):
if __name__ == '__main__':
app = QtGui.QApplication(sys.argv)
# editor = GexIniEditor(lambda: gex.TrxRawUSB())
editor = GexIniEditor(lambda: gex.TrxSerialThread(port='/dev/ttyUSB1',
baud=57600))
editor = GexIniEditor(lambda: gex.TrxRawUSB())
# editor = GexIniEditor(lambda: gex.TrxSerialThread(port='/dev/ttyUSB1',
# baud=57600))
# centered resize
w = 800