mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 18:49:07 +00:00
6186822f14
... and fixed some python3 stuff.
34 lines
802 B
Python
Executable File
34 lines
802 B
Python
Executable File
#!/usr/bin/env python3
|
|
from __future__ import print_function
|
|
|
|
from trezorlib.debuglink import DebugLink
|
|
from trezorlib.client import TrezorClient
|
|
from trezorlib.transport_hid import HidTransport
|
|
import binascii
|
|
import sys
|
|
|
|
|
|
def main():
|
|
# List all connected TREZORs on USB
|
|
devices = HidTransport.enumerate()
|
|
|
|
# Check whether we found any
|
|
if len(devices) == 0:
|
|
print('No TREZOR found')
|
|
return
|
|
|
|
# Use first connected device
|
|
transport = devices[0]
|
|
debug_transport = devices[0].find_debug()
|
|
|
|
# Creates object for manipulating TREZOR
|
|
client = TrezorClient(transport)
|
|
debug = DebugLink(debug_transport)
|
|
|
|
debug.memory_write(int(sys.argv[1], 16), binascii.unhexlify(sys.argv[2]), flash=True)
|
|
client.close()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|