1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 15:38:11 +00:00
trezor-firmware/mocks/trezor/msg.py
2016-09-27 17:26:17 +02:00

20 lines
561 B
Python

# ../extmod/modtrezormsg/modtrezormsg.c
def setup(ifaces: list) -> None:
'''
Configures USB interfaces with a list of tuples (interface_number, usage_page)
'''
# ../extmod/modtrezormsg/modtrezormsg.c
def send(iface: int, message: bytes) -> int:
'''
Sends message using USB HID (device) or UDP (emulator).
'''
# ../extmod/modtrezormsg/modtrezormsg.c
def select(timeout_us: int) -> tuple:
'''
Polls the event queue and returns the event object.
Function returns None if timeout specified in microseconds is reached.
'''