from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions
from ........ import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class AllocatedCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("allocated", core, parent)
[docs]
def get(self, monitorPane=repcap.MonitorPane.Default) -> int:
"""
``[SOURce<HW>]:BB:GNSS:MONitor<CH>:DISPlay:CHANnels:ALLocated`` \n
Snippet: ``value: int = driver.source.bb.gnss.monitor.display.channels.allocated.get(monitorPane = repcap.MonitorPane.Default)`` \n
Queries the maximum number of allocated channels.
:param monitorPane: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Monitor')
:return: allocated_chans: integer Range: 0 to depends on installed options
"""
monitorPane_cmd_val = self._cmd_group.get_repcap_cmd_value(monitorPane, repcap.MonitorPane)
response = self._core.io.query_str(f'SOURce<HwInstance>:BB:GNSS:MONitor{monitorPane_cmd_val}:DISPlay:CHANnels:ALLocated?')
return Conversions.str_to_int(response)