User manual
IEEE-488 Reference
2001-900-01 Rev. K / August 2010 4-189
Note: To disable all messages from entering the Error Queue, send the following command:
:stat:que:enab ()
Programming example 10 OUTPUT 716; “:stat:que:enab (0:-999); enab?”
20 ENTER 716; A$
30 PRINT A$
40 END
Line 10 Enables all SCPI defined messages.
Line 20 Addresses the Model 2001 to talk.
Line 30 Displays the messages (0:-999).
DISable <list>
:STATus:QUEue:DISable <list> Disable messages for Error Queue
Parameter <list> = (numlist)
where; numlist is a specified list of messages that you wish to disable for the Error Queue.
Format :stat:que:dis (numlist)
Defaults Power-up Clears list
*CLS No effect
:STATus:PRESet No effect
Query :DISable? Query list of disabled messages
Short-form format: :stat:que:dis?
Response message: numlist
Description On power-up, all error messages are enabled and will go into the Error Queue as they occur. Status mes-
sages are not enabled and will not go into the queue. This command is used to specify which messages
you want disabled. Disabled messages are prevented from going into the Error Queue.
Messages are specified by numbers (see Table 3-4). The following examples show various forms for ex-
pressing a message numlist:
Numlist= -110 Single message.
= -110, -140, -222 Messages separated by commas.
= -110:-222 Range of messages (-100 through -222).
= -110:-222, -230 Range entry and single entry separated by a comma.
Programming example 10 OUTPUT 716; “:stat:que:dis (-140:-150); dis?”
20 ENTER 716; A$
30 PRINT A$
40 END
Line 10 Disables messages -140 through -150.
Line 20 Addresses the Model 2001 to talk.
Line 30 Displays the disabled messages (-140:-150).