Source code for RsSmw.Implementations.Source.Bb.Gsm.AqPsk

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
from ...... import enums


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class AqPskCls:
	"""
	| Commands in total: 3
	| Subgroups: 2
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("aqPsk", core, parent)

	@property
	def angle(self):
		"""
		| Commands in total: 1
		| Subgroups: 0
		| Direct child commands: 1
		"""
		if not hasattr(self, '_angle'):
			from .Angle import AngleCls
			self._angle = AngleCls(self._core, self._cmd_group)
		return self._angle

	@property
	def scpir(self):
		"""
		| Commands in total: 1
		| Subgroups: 0
		| Direct child commands: 1
		"""
		if not hasattr(self, '_scpir'):
			from .Scpir import ScpirCls
			self._scpir = ScpirCls(self._core, self._cmd_group)
		return self._scpir

	# noinspection PyTypeChecker
[docs] def get_format_py(self) -> enums.GsmModTypeAqpsk: """ ``[SOURce<HW>]:BB:GSM:AQPSk:FORMat`` \n Snippet: ``value: enums.GsmModTypeAqpsk = driver.source.bb.gsm.aqPsk.get_format_py()`` \n The command queries the modulation type. The modulation type is permanently set to AQPSK. :return: format_py: AQPSk """ response = self._core.io.query_str('SOURce<HwInstance>:BB:GSM:AQPSk:FORMat?') return Conversions.str_to_scalar_enum(response, enums.GsmModTypeAqpsk)
def clone(self) -> 'AqPskCls': """ 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 = AqPskCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group