BASICA/QuickBASIC GPIB-PC Function Calls Section Four AGPIB-PC User Manual 4A-76 ©National Instruments Corp.BASICA/QuickBASIC BASICA/QuickBASICIBSTOP IBSTOPPurpose: Abort asynchronous operationFormat: CALL IBSTOP (BD%)Remarks: BD% specifies a device or an interface board.IBSTOP terminates any asynchronous read, write, orcommand operation in progress.Device IBSTOP Function:If BD% specifies a device, IBSTOP attempts to terminate any unfinishedasynchronous I/O operation to that device that had been started with adevice function for that device.If the operation is aborted before completion, the ERR bit in the statusword is set and an EABO error is returned. No error indication results ifthe operation successfully completes before IBSTOP is called.Board IBSTOP Function:If BD% specifies a board, IBSTOP attempts to terminate any unfinishedasynchronous I/O operation that had been started with a board functionusing that board.If the operation is aborted before completion, the ERR bit in the statusword is set and an EABO error is returned. No error indication results ifthe operation successfully completes before IBSTOP is called.Device Example:1. Stop any asynchronous operations associated with the deviceRDR%.100 CALL IBSTOP (RDR%)