SourcePoint Intel Help

Table of Contents

msgdelete

Delete a JTAG message.

Syntax

[result =] msgdelete(msg-handle)

Where:

result

is a boolean variable that contains the return value of this command. TRUE indicates the JTAG message was successfully deleted. FALSE indicates an error occurred, such as the JTAG message was not found

msg-handle

is the name of a previously defined debug variable of type handle. This is the variable that was passed in to msgopen when the JTAG message was created

Discussion

Use the msgdelete command to release a JTAG message handle so it can be used again.

Example

Command input:

define handle h
msgopen(h)

msgir(h, 4, 2)

msgclose(h)

msgscan(h)
msgdelete(h)

Related Topics: