[docs]classGfdmCls:"""Gfdm commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("gfdm",core,parent)
[docs]defget_db_symbols(self)->int:"""SCPI: [SOURce<HW>]:BB:OFDM:GFDM:DBSYmbols \n Snippet: value: int = driver.source.bb.ofdm.gfdm.get_db_symbols() \n Sets data block size in terms of symbols per data block. The maximum size is the sequence length, see [:SOURce<hw>]:BB:OFDM:SEQLength. \n :return: gfdm_db_symbols: integer Range: 1 to depends on settings """response=self._core.io.query_str('SOURce<HwInstance>:BB:OFDM:GFDM:DBSYmbols?')returnConversions.str_to_int(response)
[docs]defset_db_symbols(self,gfdm_db_symbols:int)->None:"""SCPI: [SOURce<HW>]:BB:OFDM:GFDM:DBSYmbols \n Snippet: driver.source.bb.ofdm.gfdm.set_db_symbols(gfdm_db_symbols = 1) \n Sets data block size in terms of symbols per data block. The maximum size is the sequence length, see [:SOURce<hw>]:BB:OFDM:SEQLength. \n :param gfdm_db_symbols: integer Range: 1 to depends on settings """param=Conversions.decimal_value_to_str(gfdm_db_symbols)self._core.io.write(f'SOURce<HwInstance>:BB:OFDM:GFDM:DBSYmbols {param}')