Everything

debugger.Upload.Motorola


This function saves the memory data in Motorola format.

[Specification format]

debugger.Upload.Motorola(fileName, address1, address2, force = False)

[Argument(s)]

Argument

Description

fileName

Specify a file name.

address1

Specify an upload start address.

address2

Specify an upload end address.

force

Specify whether to overwrite.

True: Overwrite

False: Do not overwrite (default).

[Return value]

If the memory data was uploaded successfully: True

If there was an error when uploading the memory data: False

[Detailed description]

-

This function saves the memory data from address1 to address2 in Motorola format.

[Example of use]

>>>debugger.Upload.Motorola("C:/test/testMotorola.hex", 0x1000, 0x2000, True)
True
>>>