from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal.Utilities import trim_str_response
# 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) -> str:
"""
``FETCh:SCDetailed:ALL`` \n
Snippet: ``value: str = driver.applications.k91Wlan.fetch.scDetailed.all.get()`` \n
Returns detailed signal information for each decoded RU and for each object. The result is a comma-separated list of
values with 5 rows per RU, in the same order as the Signal Content Detailed result display (see 'Signal Content Detailed
(IEEE 802.11ax, be, bn) ') . These results are only available if the Signal Content Detailed result display is currently
active (see method ``RsFsw.layout.add.window.get()`` ) .
The information for each decoded RU is returned in the following object order: \n
- Legacy long training field (L-LTF)
- Long training field
- Data + Pilot
- Data only
- Pilot only
"""
response = self._core.io.query_str(f'FETCh:SCDetailed:ALL?')
return trim_str_response(response)