python-trezor/tools/mem_write.py

34 lines
802 B
Python
Raw Normal View History

#!/usr/bin/env python3
2016-05-26 13:20:34 -07:00
from __future__ import print_function
from trezorlib.debuglink import DebugLink
2017-06-23 12:31:42 -07:00
from trezorlib.client import TrezorClient
2016-05-26 13:20:34 -07:00
from trezorlib.transport_hid import HidTransport
import binascii
import sys
2017-06-23 12:31:42 -07:00
2016-05-26 13:20:34 -07:00
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
2017-09-04 04:36:31 -07:00
transport = devices[0]
debug_transport = devices[0].find_debug()
2016-05-26 13:20:34 -07:00
# Creates object for manipulating TREZOR
client = TrezorClient(transport)
debug = DebugLink(debug_transport)
2017-06-23 12:31:42 -07:00
debug.memory_write(int(sys.argv[1], 16), binascii.unhexlify(sys.argv[2]), flash=True)
2016-05-26 13:20:34 -07:00
client.close()
2017-06-23 12:31:42 -07:00
2016-05-26 13:20:34 -07:00
if __name__ == '__main__':
main()