GET_BROKEN_CHAIN_DETECTION
The GET_BROKEN_CHAIN_DETECTION function returns a boolean value indicating whether broken chain detection is currently enabled or not when inside a raw JTAG blocks. Broken chain detection can be controlled using SET_BROKEN_CHAIN_DETECTION.
By default detection is disabled when entering a raw JTAG block and is always enabled again when leaving. Note that raw JTAG blocks may be nested, and detection will only be automatically changed when entering and leaving the outermost block.
Syntax
GET_BROKEN_CHAIN_DETECTION()
Return value
A boolean value, which is TRUE if broken chain detection is enabled, otherwise it is FALSE.
Errors
It is a compile error to use GET_BROKEN_CHAIN_DETECTION outside of a raw JTAG block.
Example
INT detection; JTAG ... detection := GET_BROKEN_CHAIN_DETECTION(); ... END;
XJTAG v4.1.100