Source code for RsFsw.Implementations.Applications.K91_Wlan.Fetch.Burst.Count.All

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class AllCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

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

[docs] def get(self) -> int: """ ``FETCh:BURSt:COUNt:ALL`` \n Snippet: ``value: int = driver.applications.k91Wlan.fetch.burst.count.all.get()`` \n Returns the number of analyzed PPDUs for the entire measurement. If multiple measurements are required because the number of PPDUs to analyze is greater than the number of PPDUs that can be captured in one buffer, this command returns the number of analyzed PPDUs in all measurements (as opposed to method ``RsFsw.applications.k91Wlan.fetch.burst.count.get()`` . """ response = self._core.io.query_str(f'FETCh:BURSt:COUNt:ALL?') return Conversions.str_to_int(response)