1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-03-05 17:56:10 +00:00

use HidTransport by default again

This commit is contained in:
Pavol Rusnak 2014-07-29 18:57:13 +02:00
parent 608025419b
commit 9ed0604b65
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ devices = HidTransport.enumerate()
if len(devices) > 0: if len(devices) > 0:
if devices[0][1] != None: if devices[0][1] != None:
print 'Using TREZOR' print 'Using TREZOR'
TRANSPORT = BridgeTransport TRANSPORT = HidTransport
TRANSPORT_ARGS = (devices[0],) TRANSPORT_ARGS = (devices[0],)
TRANSPORT_KWARGS = {'debug_link': False} TRANSPORT_KWARGS = {'debug_link': False}
DEBUG_TRANSPORT = HidTransport DEBUG_TRANSPORT = HidTransport

View File

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
for i in test_*.py; do for i in test_*.py; do
echo Starting: $i echo Starting: $i
python $i > $i.out python $i > $i.out 2> $i.err
done done