Instrument identification.
(self)
| 20 | |
| 21 | @Feat(read_once=True) |
| 22 | def idn(self): |
| 23 | """Instrument identification. |
| 24 | """ |
| 25 | return self.parse_query('*IDN?', |
| 26 | format='{manufacturer:s},{model:s},{serialno:s},{softno:s}') |
| 27 | |
| 28 | @Feat(read_once=True) |
| 29 | def fitted_options(self): |
nothing calls this directly
no test coverage detected