TEST_DETAILS_NET_LINK
The TEST_DETAILS_NET_LINK function is part of the TEST_DETAILS output framework and prints a hyperlink for a net in the test output, that enables the net to be visualised in the application.. It is defined and used the same way as PRINT_NET_LINK but outputs to the test details section instead of being printed immediately as part of the normal test output. Multiple nets can be linked to using TEST_DETAILS_NETS_LINK.
TEST_DETAILS_NET_LINK was added in XJTAG v3.1.0.
Syntax
TEST_DETAILS_NET_LINK( STRING netName )
TEST_DETAILS_NET_LINK( STRING text, STRING netName )
Parameters
- text
- Optional text to print for the link. If this argument is not given the text used will be the name of the net being linked to.
- netName
-
A string identifying a net in the form 'board.net', e.g. a string returned from GET_NET_FROM_PIN. The board name is optional, but the net name must uniquely identify the net, so if there is any ambiguity then the board name must be supplied.
Errors
If the netName supplied does not contain a board name and matches more than one net, then an error occurs. If the expression is constant, the error will occur at compile-time. Otherwise, the error will occur at run-time, when the function is run.
See Also
XJTAG v4.1.100