1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-13 11:29:11 +00:00
trezor-firmware/tools/mem_write.py

32 lines
809 B
Python
Raw Normal View History

#!/usr/bin/env python3
2016-05-26 20:20:34 +00:00
from trezorlib.debuglink import DebugLink
2017-06-23 19:31:42 +00:00
from trezorlib.client import TrezorClient
from trezorlib.transport import enumerate_devices
2016-05-26 20:20:34 +00:00
import binascii
import sys
2017-06-23 19:31:42 +00:00
2016-05-26 20:20:34 +00:00
def main():
# List all debuggable TREZORs
devices = [device for device in enumerate_devices() if hasattr(device, 'find_debug')]
2016-05-26 20:20:34 +00:00
# Check whether we found any
if len(devices) == 0:
print('No TREZOR found')
return
# Use first connected device
2017-09-04 11:36:31 +00:00
transport = devices[0]
debug_transport = devices[0].find_debug()
2016-05-26 20:20:34 +00:00
# Creates object for manipulating TREZOR
client = TrezorClient(transport)
debug = DebugLink(debug_transport)
2017-06-23 19:31:42 +00:00
debug.memory_write(int(sys.argv[1], 16), binascii.unhexlify(sys.argv[2]), flash=True)
2016-05-26 20:20:34 +00:00
client.close()
2017-06-23 19:31:42 +00:00
2016-05-26 20:20:34 +00:00
if __name__ == '__main__':
main()