[docs]classVfirmwareCls:"""Vfirmware commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("vfirmware",core,parent)
[docs]defget(self)->float:"""SCPI: INPut:IQ:OSC:VFIRmware \n Snippet: value: float = driver.applications.k149Uwb.inputPy.iq.osc.vfirmware.get() \n Queries whether the firmware on the connected oscilloscope is supported for Oscilloscope Baseband Input. For details see the specifications document. \n :return: firmware_state: ON | OFF | 0 | 1 OFF | 0 Firmware is not supported ON | 1 Firmware is supported"""response=self._core.io.query_str(f'INPut:IQ:OSC:VFIRmware?')returnConversions.str_to_float(response)