mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-03-05 09:46:07 +00:00
use HidTransport by default again
This commit is contained in:
parent
608025419b
commit
9ed0604b65
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user