v1.9.0 #53
@ -170,8 +170,8 @@ def prepare_mem_read_command(object_id: bytearray) -> bytearray:
|
|||||||
def prepare_flash_write_cmd(object_id: bytearray) -> bytearray:
|
def prepare_flash_write_cmd(object_id: bytearray) -> bytearray:
|
||||||
obcFile = get_obc_file()
|
obcFile = get_obc_file()
|
||||||
mpsocFile = get_mpsoc_file()
|
mpsocFile = get_mpsoc_file()
|
||||||
command = object_id + struct.pack('!I', CommandIds.FLASH_WRITE) + bytearray(obcFile, 'utf-8') + \
|
command = object_id + struct.pack('!I', CommandIds.FLASH_WRITE) + bytearray(obcFile, 'utf-8') + bytearray(mpsocFile,
|
||||||
struct.pack('B', 0) + bytearray(mpsocFile, 'utf-8')
|
'utf-8')
|
||||||
return command
|
return command
|
||||||
|
|
||||||
|
|
||||||
@ -182,7 +182,7 @@ def prepare_flash_delete_cmd(object_id: bytearray) -> bytearray:
|
|||||||
|
|
||||||
|
|
||||||
def prepare_replay_start_cmd(object_id: bytearray) -> bytearray:
|
def prepare_replay_start_cmd(object_id: bytearray) -> bytearray:
|
||||||
replay = int(input("Specify replay mode (0 - repeated, 1 - once): "))
|
replay = int(input("Specify replay mode (0 - once, 1 - repeated): "))
|
||||||
command = object_id + struct.pack('!I', CommandIds.TC_REPLAY_START) + struct.pack('!B', replay)
|
command = object_id + struct.pack('!I', CommandIds.TC_REPLAY_START) + struct.pack('!B', replay)
|
||||||
return command
|
return command
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user