1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 02:49:02 +00:00
trezor-firmware/tests/config.py

46 lines
1.2 KiB
Python
Raw Normal View History

2016-05-20 20:27:20 +00:00
from __future__ import print_function
2012-11-15 20:05:57 +00:00
import sys
sys.path = ['../',] + sys.path
2013-09-13 03:28:56 +00:00
from trezorlib.transport_pipe import PipeTransport
from trezorlib.transport_hid import HidTransport
2016-11-11 17:57:59 +00:00
from trezorlib.transport_udp import UdpTransport
def pipe_exists(path):
import os
try:
os.stat(path)
return True
except:
return False
2012-11-15 20:05:57 +00:00
2014-02-08 16:53:32 +00:00
devices = HidTransport.enumerate()
if len(devices) > 0:
2016-11-11 17:42:02 +00:00
print('Using TREZOR')
TRANSPORT = HidTransport
TRANSPORT_ARGS = (devices[0],)
TRANSPORT_KWARGS = {'debug_link': False}
DEBUG_TRANSPORT = HidTransport
DEBUG_TRANSPORT_ARGS = (devices[0],)
DEBUG_TRANSPORT_KWARGS = {'debug_link': True}
2016-11-11 17:57:59 +00:00
elif pipe_exists('/tmp/pipe.trezor.to'):
print('Using Emulator (v1=pipe)')
2013-10-08 18:34:38 +00:00
TRANSPORT = PipeTransport
TRANSPORT_ARGS = ('/tmp/pipe.trezor', False)
2014-01-20 12:21:49 +00:00
TRANSPORT_KWARGS = {}
2013-10-08 18:34:38 +00:00
DEBUG_TRANSPORT = PipeTransport
DEBUG_TRANSPORT_ARGS = ('/tmp/pipe.trezor_debug', False)
2014-01-20 12:21:49 +00:00
DEBUG_TRANSPORT_KWARGS = {}
2016-11-11 17:57:59 +00:00
elif True:
print('Using Emulator (v2=udp)')
TRANSPORT = UdpTransport
TRANSPORT_ARGS = ('127.0.0.1:21324')
TRANSPORT_KWARGS = {}
DEBUG_TRANSPORT = UdpTransport
DEBUG_TRANSPORT_ARGS = ('127.0.0.1:21324')
DEBUG_TRANSPORT_KWARGS = {}