[docs]defget_link(self)->enums.LinkDir:"""SCPI: [SOURce<HW>]:BB:TDSCdma:LINK \n Snippet: value: enums.LinkDir = driver.source.bb.tdscdma.get_link() \n Defines the transmission direction. \n :return: link: FORWard| DOWN | REVerse| UP """response=self._core.io.query_str('SOURce<HwInstance>:BB:TDSCdma:LINK?')returnConversions.str_to_scalar_enum(response,enums.LinkDir)
[docs]defset_link(self,link:enums.LinkDir)->None:"""SCPI: [SOURce<HW>]:BB:TDSCdma:LINK \n Snippet: driver.source.bb.tdscdma.set_link(link = enums.LinkDir.DOWN) \n Defines the transmission direction. \n :param link: FORWard| DOWN | REVerse| UP """param=Conversions.enum_scalar_to_str(link,enums.LinkDir)self._core.io.write(f'SOURce<HwInstance>:BB:TDSCdma:LINK {param}')
[docs]defpreset(self)->None:"""SCPI: [SOURce<HW>]:BB:TDSCdma:PRESet \n Snippet: driver.source.bb.tdscdma.preset() \n Sets the parameters of the digital standard to their default values (*RST values specified for the commands) . Not affected is the state set with the command SOURce<hw>:BB:TDSCdma:STATe. \n """self._core.io.write(f'SOURce<HwInstance>:BB:TDSCdma:PRESet')
[docs]defpreset_with_opc(self,opc_timeout_ms:int=-1)->None:"""SCPI: [SOURce<HW>]:BB:TDSCdma:PRESet \n Snippet: driver.source.bb.tdscdma.preset_with_opc() \n Sets the parameters of the digital standard to their default values (*RST values specified for the commands) . Not affected is the state set with the command SOURce<hw>:BB:TDSCdma:STATe. \n Same as preset, but waits for the operation to complete before continuing further. Use the RsSmw.utilities.opc_timeout_set() to set the timeout value. \n :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call."""self._core.io.write_with_opc(f'SOURce<HwInstance>:BB:TDSCdma:PRESet',opc_timeout_ms)
[docs]defreset(self)->None:"""SCPI: [SOURce<HW>]:BB:TDSCdma:RESet \n Snippet: driver.source.bb.tdscdma.reset() \n Resets all cells to the predefined settings. The reset applies to the selected link direction. An overview is provided by table in 'Set to Default'. \n """self._core.io.write(f'SOURce<HwInstance>:BB:TDSCdma:RESet')
[docs]defreset_with_opc(self,opc_timeout_ms:int=-1)->None:"""SCPI: [SOURce<HW>]:BB:TDSCdma:RESet \n Snippet: driver.source.bb.tdscdma.reset_with_opc() \n Resets all cells to the predefined settings. The reset applies to the selected link direction. An overview is provided by table in 'Set to Default'. \n Same as reset, but waits for the operation to complete before continuing further. Use the RsSmw.utilities.opc_timeout_set() to set the timeout value. \n :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call."""self._core.io.write_with_opc(f'SOURce<HwInstance>:BB:TDSCdma:RESet',opc_timeout_ms)
[docs]defget_slength(self)->int:"""SCPI: [SOURce<HW>]:BB:TDSCdma:SLENgth \n Snippet: value: int = driver.source.bb.tdscdma.get_slength() \n Sets the sequence length of the arbitrary waveform component of the TD-SCDMA signal in the number of frames. This component is calculated in advance and output in the arbitrary waveform generator. It is added to the realtime signal components. \n :return: slength: integer Range: 1 to 5000 """response=self._core.io.query_str('SOURce<HwInstance>:BB:TDSCdma:SLENgth?')returnConversions.str_to_int(response)
[docs]defset_slength(self,slength:int)->None:"""SCPI: [SOURce<HW>]:BB:TDSCdma:SLENgth \n Snippet: driver.source.bb.tdscdma.set_slength(slength = 1) \n Sets the sequence length of the arbitrary waveform component of the TD-SCDMA signal in the number of frames. This component is calculated in advance and output in the arbitrary waveform generator. It is added to the realtime signal components. \n :param slength: integer Range: 1 to 5000 """param=Conversions.decimal_value_to_str(slength)self._core.io.write(f'SOURce<HwInstance>:BB:TDSCdma:SLENgth {param}')
[docs]defget_state(self)->bool:"""SCPI: [SOURce<HW>]:BB:TDSCdma:STATe \n Snippet: value: bool = driver.source.bb.tdscdma.get_state() \n Activates the standard and deactivates all the other digital standards and digital modulation modes in the same path. \n :return: state: 1| ON| 0| OFF """response=self._core.io.query_str('SOURce<HwInstance>:BB:TDSCdma:STATe?')returnConversions.str_to_bool(response)
[docs]defset_state(self,state:bool)->None:"""SCPI: [SOURce<HW>]:BB:TDSCdma:STATe \n Snippet: driver.source.bb.tdscdma.set_state(state = False) \n Activates the standard and deactivates all the other digital standards and digital modulation modes in the same path. \n :param state: 1| ON| 0| OFF """param=Conversions.bool_to_str(state)self._core.io.write(f'SOURce<HwInstance>:BB:TDSCdma:STATe {param}')
[docs]defget_version(self)->str:"""SCPI: [SOURce<HW>]:BB:TDSCdma:VERSion \n Snippet: value: str = driver.source.bb.tdscdma.get_version() \n Queries the version of the TD-SCDMA standard underlying the definitions. \n :return: version: string """response=self._core.io.query_str('SOURce<HwInstance>:BB:TDSCdma:VERSion?')returntrim_str_response(response)
defclone(self)->'TdscdmaCls':"""Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group"""new_group=TdscdmaCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group