TEST_DETAILS_NETS_LINK
The TEST_DETAILS_NETS_LINK function is part of the TEST_DETAILS output framework and prints a hyperlink for a set of nets in the test output, that enables the nets to be visualised in the application.. It is defined and used the same way as PRINT_NETS_LINK but outputs to the test details section instead of being printed immediately as part of the normal test output. A single net can be linked to using TEST_DETAILS_NET_LINK.
TEST_DETAILS_NETS_LINK was added in XJTAG v3.1.0.
Syntax
TEST_DETAILS_NETS_LINK( STRING text, STRING netName, ... )
Parameters
- text
- The text to print for the link.
- netName
-
One or more strings identifying a net in the form 'board.net', e.g. a string returned from GET_NET_FROM_PIN. The board name is optional, but each net name must uniquely identify a net, so if there is any ambiguity then the board name must be supplied.
Errors
If any 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