Sets "Operation Complete" (bit 0) in the Standard Event register at the completion of the current operation. The purpose of this command is to synchronize your application with the instrument. Other commands may be executed before Operation Complete bit is set.
(self)
| 132 | |
| 133 | @Action() |
| 134 | def set_operation_complete_bit(self): |
| 135 | """Sets "Operation Complete" (bit 0) in the Standard Event register at |
| 136 | the completion of the current operation. |
| 137 | |
| 138 | The purpose of this command is to synchronize your application with the instrument. |
| 139 | Other commands may be executed before Operation Complete bit is set. |
| 140 | """ |
| 141 | return self.query('*OPC') |
| 142 | |
| 143 | @Feat(values={True: 0, False: 1}) |
| 144 | def poweron_status_clear_enabled(self): |